24 lines
527 B
C#
24 lines
527 B
C#
namespace CompetitionAPI.api.unity
|
|
{
|
|
/// <summary>
|
|
/// 选择台区上传接口请求实体
|
|
/// </summary>
|
|
public class SelectPlatformAreaRequest
|
|
{
|
|
/// <summary>
|
|
/// 用户id
|
|
/// </summary>
|
|
public string UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试id
|
|
/// </summary>
|
|
public string ExamId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选择的台区
|
|
/// </summary>
|
|
public string SelectPlatformArea { get; set; }
|
|
}
|
|
}
|