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