EExamMode.cs 483 B

1234567891011121314151617181920212223
  1. using System.ComponentModel;
  2. namespace Hotline.Share.Enums.Exams
  3. {
  4. public enum EExamMode
  5. {
  6. /// <summary>
  7. /// 随机试题
  8. /// </summary>
  9. [Description("随机试题")]
  10. Random = 1,
  11. /// <summary>
  12. /// 自选试题
  13. /// </summary>
  14. [Description("统一试卷")]
  15. Manual = 0,
  16. /// <summary>
  17. /// 导入
  18. /// </summary>
  19. [Description("导入")]
  20. Import = 2,
  21. }
  22. }