using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Const { class EnumInfo { } /// /// 任务状态 /// public enum TaskState { [Description("待接收")] 待接收 = 1, [Description("已接收")] 已接收 = 2, [Description("已完成")] 已完成 = 3, } }