24 lines
524 B
C#
24 lines
524 B
C#
namespace CompetitionAPI.api.unity
|
|
{
|
|
/// <summary>
|
|
/// 更新考试环节接口请求实体
|
|
/// </summary>
|
|
public class UpdateExaminationLinkRequest
|
|
{
|
|
/// <summary>
|
|
/// 用户id
|
|
/// </summary>
|
|
public string UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试id
|
|
/// </summary>
|
|
public string ExamId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试环节
|
|
/// </summary>
|
|
public string ExaminationLink { get; set; }
|
|
}
|
|
}
|