using Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure;
namespace CompetitionAPI.api.back
{
///
/// 初始化出线电缆编号牌接口请求实体
///
public class InitCableNumberPlateRequest
{
///
/// 考试id
///
public string ExamId { get; set; }
///
/// 台区
///
public string PlatformArea { get; set; }
///
/// 进线电缆型号及长度
///
public string IncomingLineModelLength { get; set; }
///
/// 出线电缆型号及长度
///
public string OutgoingLineModelLength { get; set; }
}
}