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

41 lines
849 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>
/// 答题状态枚举: 0-未答题1-已答题2-正确3-半对4-错误
/// </summary>
public enum AnswerStatusEnum
{
/// <summary>
/// 未答题
/// </summary>
[Description("未答题")]
None = 0,
/// <summary>
/// 已答题
/// </summary>
[Description("已答题")]
Answer = 1,
/// <summary>
/// 正确
/// </summary>
[Description("正确")]
Correct = 2,
/// <summary>
/// 半对
/// </summary>
[Description("半对")]
HalfRight = 3,
/// <summary>
/// 错误
/// </summary>
[Description("错误")]
Error = 4
}
}