25 lines
492 B
C#
25 lines
492 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace QYZH.InteractiveMagazine.Models.Enum
|
|||
|
|
{
|
|||
|
|
public enum TaskTypeEnum
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 客观题
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("客观题")]
|
|||
|
|
Objective = 1,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 主观题
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("主观题")]
|
|||
|
|
Subjective = 2
|
|||
|
|
}
|
|||
|
|
}
|