using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Message { /// /// 通用通知实体 /// public class CommonNotifyModel { private int _RetCode = int.MinValue; /// /// 返回码 /// public int RetCode { get { return _RetCode; } set { _RetCode = value; } } private uint _AccountId; /// /// 账户ID /// public uint AccountId { get { return _AccountId; } set { _AccountId = value; } } private string _Title; /// /// 通知标题 /// public string Title { get { return _Title; } set { _Title = value; } } private string _Content; /// /// 通知内容 /// public string Content { get { return _Content; } set { _Content = value; } } } }