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