using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// ///消息位置类型 1 = 首页消息; 2=详情消息 /// public enum PositionType { /// /// 首页消息 /// [Description("首页消息")] HomePage = 1, /// /// 详情消息 /// [Description("详情消息")] Detail = 2 } }