namespace CompetitionAPI.api.unity { /// /// 上传考试选择题数据接口请求实体 /// public class AddUserChoiceQuestionRequest { /// /// 考试id /// public string ExamId { get; set; } /// /// 用户id /// public string UserId { get; set; } /// /// 数据 /// public List Data { get; set; } } }