package com.planfeed.elements;
public class NotificationsChannel {
private String channelId = null;
private long startTime =0l;
public NotificationsChannel() {
// TODO Auto-generated constructor stub
}
public long getStartTime() {
return startTime;
}
public void setStartTime(long startTime) {
this.startTime = startTime;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
}