
com.togocms.pns.api.PushNotification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of togopns Show documentation
Show all versions of togopns Show documentation
Push Notification System (Apple/Google)
The newest version!
package com.togocms.pns.api;
import java.io.Serializable;
public class PushNotification implements Serializable {
private String title;
private String alert;
private Long id;
private Long channelId;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAlert() {
return alert;
}
public void setAlert(String alert) {
this.alert = alert;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getChannelId() {
return channelId;
}
public void setChannelId(Long channelId) {
this.channelId = channelId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy