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

22 lines
442 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-已完成,未开始(没有数据)
/// </summary>
public enum UserAnswerStatusEnum
{
/// <summary>
/// 进行中
/// </summary>
[Description("进行中")]
Processing = 0,
/// <summary>
/// 已完成
/// </summary>
[Description("已完成")]
Complete = 1,
}