using JiangsuEarthquake.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiangsuEarthquake.Models { public class SendMessageListModel : NotifyBase { private int id; public int ID { get { return id; } set { id = value; this.DoNotify(); } } private int stationid; /// /// 目标站点ID /// public int StationID { get { return stationid; } set { stationid = value; this.DoNotify(); } } private string messagecontent; /// /// 消息内容 /// public string MessageContent { get { return messagecontent; } set { messagecontent = value; this.DoNotify(); } } private int remindtime; /// /// 剩余时间 /// public int RemindTime { get { return remindtime; } set { remindtime = value; this.DoNotify(); } } private byte[] message; /// /// 消息 /// public byte[] Message { get { return message; } set { message = value; this.DoNotify(); } } private string sendstate; /// /// 发送状态 /// public string SendState { get { return sendstate; } set { sendstate = value; this.DoNotify(); } } } }