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