package org.telegram.group;
/**
* 本地缓存
*/
public class LocalCanche {
private String groupId;
private String title;
private int type;//1:自动退出,2:自由退出
private String time;
@Override
public String toString() {
return "LocalCanche{" +
"groupId='" + groupId + '\'' +
", title='" + title + '\'' +
", type=" + type +
", time='" + time + '\'' +
'}';
}
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
}