CommonNotifyModel.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Message
  6. {
  7. /// <summary>
  8. /// 通用通知实体
  9. /// </summary>
  10. public class CommonNotifyModel
  11. {
  12. private int _RetCode = int.MinValue;
  13. /// <summary>
  14. /// 返回码
  15. /// </summary>
  16. public int RetCode
  17. {
  18. get { return _RetCode; }
  19. set { _RetCode = value; }
  20. }
  21. private uint _AccountId;
  22. /// <summary>
  23. /// 账户ID
  24. /// </summary>
  25. public uint AccountId
  26. {
  27. get { return _AccountId; }
  28. set { _AccountId = value; }
  29. }
  30. private string _Title;
  31. /// <summary>
  32. /// 通知标题
  33. /// </summary>
  34. public string Title
  35. {
  36. get { return _Title; }
  37. set { _Title = value; }
  38. }
  39. private string _Content;
  40. /// <summary>
  41. /// 通知内容
  42. /// </summary>
  43. public string Content
  44. {
  45. get { return _Content; }
  46. set { _Content = value; }
  47. }
  48. }
  49. }