2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateAddressResponseItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? RegistAddress { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Province? RegistProvince { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? RegistProvinceId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? RegistProvince { get; set; }
|
|
|
|
|
|
// public Models.District? RegistDistrict { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? RegistDistrictId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? RegistDistrict { get; set; }
|
|
|
|
|
|
// public Models.SubDistrict? RegistSubDistrict { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? RegistSubDistrictId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? RegistSubDistrict { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? RegistZipCode { get; set; }
|
|
|
|
|
|
public bool? RegistSame { get; set; }
|
|
|
|
|
|
public string? CurrentAddress { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Province? CurrentProvince { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? CurrentProvinceId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? CurrentProvince { get; set; }
|
|
|
|
|
|
// public Models.District? CurrentDistrict { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? CurrentDistrictId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? CurrentDistrict { get; set; }
|
|
|
|
|
|
// public Models.SubDistrict? CurrentSubDistrict { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? CurrentSubDistrictId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? CurrentSubDistrict { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? CurrentZipCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|