package cn.wildfire.chat.kit;
|
|
/**
|
* @author kimi
|
* @description
|
* @date 2020-12-15 14:38
|
*/
|
|
|
public class LineStatusModel {
|
private int lineImgPath;
|
private String statusName;
|
|
public LineStatusModel(int lineImgPath, String statusName) {
|
this.lineImgPath = lineImgPath;
|
this.statusName = statusName;
|
}
|
|
public int getLineImgPath() {
|
return lineImgPath;
|
}
|
|
public void setLineImgPath(int lineImgPath) {
|
this.lineImgPath = lineImgPath;
|
}
|
|
public String getStatusName() {
|
return statusName;
|
}
|
|
public void setStatusName(String statusName) {
|
this.statusName = statusName;
|
}
|
}
|