NoticeTypeConst.cs 378 B

123456789101112131415161718192021
  1. using System.ComponentModel;
  2. namespace GxPress.EnumConst
  3. {
  4. /// <summary>
  5. /// 通知状态
  6. /// </summary>
  7. public enum NoticeTypeConst
  8. {
  9. /// <summary>
  10. /// 推送
  11. /// </summary>
  12. [Description("推送")] Send = 1,
  13. /// <summary>
  14. /// 草稿
  15. /// </summary>
  16. [Description("草稿")] Draft = 2,
  17. }
  18. }