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