CompetitionAPI_dotnet/CompetitionAPI/api/unity/UpdateUserExamTimeRequest.cs

24 lines
551 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace CompetitionAPI.api.unity
{
/// <summary>
/// 获取并更新考生考试时间接口请求实体
/// </summary>
public class UpdateUserExamTimeRequest
{
/// <summary>
/// 用户id
/// </summary>
public string UserId { get; set; }
/// <summary>
/// 考试id
/// </summary>
public string ExamId { get; set; }
/// <summary>
/// 是否读取1读取、0更新
/// </summary>
public string Read { get; set; }
}
}