namespace CompetitionAPI.api.unity
{
///
/// 选择台区上传接口请求实体
///
public class SelectPlatformAreaRequest
{
///
/// 用户id
///
public string UserId { get; set; }
///
/// 考试id
///
public string ExamId { get; set; }
///
/// 选择的台区
///
public string SelectPlatformArea { get; set; }
}
}