Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.Models/Enum/AnswerStatusEnum.cs

29 lines
615 B
C#
Raw Normal View History

2026-07-01 08:18:07 +08:00
using System.ComponentModel;
namespace QYZH.InteractiveMagazine.Models.Enum
{
/// <summary>
2026-07-01 08:51:41 +08:00
/// 答题状态枚举: 10-已答题20-进行中30-已完成
2026-07-01 08:18:07 +08:00
/// </summary>
public enum AnswerStatusEnum
2026-07-01 08:51:41 +08:00
{
2026-07-01 08:18:07 +08:00
/// <summary>
/// 已答题
/// </summary>
[Description("已答题")]
2026-07-01 08:51:41 +08:00
Answer = 10,
2026-07-01 08:18:07 +08:00
/// <summary>
2026-07-01 08:51:41 +08:00
/// 进行中
2026-07-01 08:18:07 +08:00
/// </summary>
2026-07-01 08:51:41 +08:00
[Description("进行中")]
Processing = 20,
2026-07-01 08:18:07 +08:00
/// <summary>
2026-07-01 08:51:41 +08:00
/// 已完成
2026-07-01 08:18:07 +08:00
/// </summary>
2026-07-01 08:51:41 +08:00
[Description("已完成")]
Complete = 30,
2026-07-01 08:18:07 +08:00
}
}