package com.cku.jpush;

import java.util.HashMap;

/**
 * Created with IntelliJ IDEA.
 * User: lyy
 * Date: 2016/7/14
 * Time: 14:32
 */
public class JpushNotification {
    private String alert;
    private String title;
    private HashMap<String, String> extras;

    public JpushNotification() {
    }

    public JpushNotification(String alert, String title, HashMap<String, String> extras) {
        this.alert = alert;
        this.title = title;
        this.extras = extras;
    }

    public String getAlert() {
        return alert;
    }

    public void setAlert(String alert) {
        this.alert = alert;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public HashMap<String, String> getExtras() {
        return extras;
    }

    public void setExtras(HashMap<String, String> extras) {
        this.extras = extras;
    }
}
