hrms-api-exam/Response/CandidateInformationResponseItem.cs

32 lines
1.4 KiB
C#

namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class CandidateInformationResponseItem
{
// public Models.Prefix? Prefix { get; set; }
public string? PrefixId { get; set; }
public string? Prefix { get; set; }
public string? FirstName { get; set; } = string.Empty;
public string? LastName { get; set; } = string.Empty;
public string? Nationality { get; set; } = string.Empty;
public DateTime? DateOfBirth { get; set; }
// public Models.Relationship? Relationship { get; set; }
public string? RelationshipId { get; set; }
public string? Relationship { get; set; }
public string? ReligionId { get; set; }
public string? Religion { get; set; }
public string? Email { get; set; } = string.Empty;
public string? CitizenId { get; set; } = string.Empty;
// public Models.Province? CitizenProvince { get; set; }
public string? CitizenProvinceId { get; set; }
public string? CitizenProvince { get; set; }
// public Models.District? CitizenDistrict { get; set; }
public string? CitizenDistrictId { get; set; }
public string? CitizenDistrict { get; set; }
public DateTime? CitizenDate { get; set; }
public string? Telephone { get; set; }
public string? MobilePhone { get; set; }
public string? Knowledge { get; set; }
public string? ProfileImg { get; set; }
}
}