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