Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.Models/Enum/AnswerStatusEnum.cs
2026-07-01 08:51:41 +08:00

29 lines
615 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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