using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Entity.Enum { /// /// 赛事状态枚举 /// public enum ActivitiesStatus { /// /// 未开始 /// [Description("未开始")] NotStarted = 1, /// /// 进行中 /// [Description("进行中")] Afoot = 2, /// /// 已完成 /// [Description("已完成")] Completed = 3, } }