using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Enums { /// /// 问题类别 /// public enum QuestionType { /// /// 无(不是问题时默认0) /// [EnumDescription("无")] None = 0, /// /// 学生 /// [EnumDescription("学生")] Student = 1, /// /// 教师 /// [EnumDescription("教师")] Teacher = 2 } }