namespace CompetitionAPI.api.unity { /// /// 开始考试接口请求实体 /// public class StartExamRequest { /// /// 用户id /// public string UserId { get; set; } /// /// 考试id /// public string ExamId { get; set; } } }