CompetitionAPI_dotnet/CompetitionAPI/api/unity/QueryTicketProcRequest.cs

24 lines
504 B
C#

namespace CompetitionAPI.api.unity
{
/// <summary>
/// 查询操作票步骤接口请求实体
/// </summary>
public class QueryTicketProcRequest
{
/// <summary>
/// 考试id
/// </summary>
public string ExamId { get; set; }
/// <summary>
/// 用户id
/// </summary>
public string UserId { get; set; }
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
}
}