using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace GxPress.EnumConst { /// /// 来源类型枚举 /// public enum SourceTypeConst { [Description("文章")] ArticleType = 1, [Description("话题")] TopicType = 2 } }