using System.ComponentModel;
namespace QYZH.InteractiveMagazine.Models.Enum
{
///
/// 答题状态枚举: 0-未答题,1-已答题,2-正确,3-半对,4-错误
///
public enum AnswerStatusEnum
{
///
/// 未答题
///
[Description("未答题")]
None = 0,
///
/// 已答题
///
[Description("已答题")]
Answer = 1,
///
/// 正确
///
[Description("正确")]
Correct = 2,
///
/// 半对
///
[Description("半对")]
HalfRight = 3,
///
/// 错误
///
[Description("错误")]
Error = 4
}
}