hrms-api-exam/Response/CandidateAddressResponseItem.cs

31 lines
1.4 KiB
C#

namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class CandidateAddressResponseItem
{
public string? RegistAddress { get; set; }
// public Models.Province? RegistProvince { get; set; }
public string? RegistProvinceId { get; set; }
public string? RegistProvince { get; set; }
// public Models.District? RegistDistrict { get; set; }
public string? RegistDistrictId { get; set; }
public string? RegistDistrict { get; set; }
// public Models.SubDistrict? RegistSubDistrict { get; set; }
public string? RegistSubDistrictId { get; set; }
public string? RegistSubDistrict { get; set; }
public string? RegistZipCode { get; set; }
public bool? RegistSame { get; set; }
public string? CurrentAddress { get; set; }
// public Models.Province? CurrentProvince { get; set; }
public string? CurrentProvinceId { get; set; }
public string? CurrentProvince { get; set; }
// public Models.District? CurrentDistrict { get; set; }
public string? CurrentDistrictId { get; set; }
public string? CurrentDistrict { get; set; }
// public Models.SubDistrict? CurrentSubDistrict { get; set; }
public string? CurrentSubDistrictId { get; set; }
public string? CurrentSubDistrict { get; set; }
public string? CurrentZipCode { get; set; }
}
}