41 lines
849 B
C#
41 lines
849 B
C#
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
|
||
}
|
||
}
|