SourceTypeConst.cs 332 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace GxPress.EnumConst
  6. {
  7. /// <summary>
  8. /// 来源类型枚举
  9. /// </summary>
  10. public enum SourceTypeConst
  11. {
  12. [Description("文章")] ArticleType = 1,
  13. [Description("话题")] TopicType = 2
  14. }
  15. }