2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateFamilyResponseItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool? Marry { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Prefix? MarryPrefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? MarryPrefixId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? MarryPrefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? MarryFirstName { get; set; }
|
|
|
|
|
|
public string? MarryLastName { get; set; }
|
2023-03-25 01:09:03 +07:00
|
|
|
|
public string? MarryOccupation { get; set; }
|
|
|
|
|
|
public string? MarryNationality { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Prefix? FatherPrefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? FatherPrefixId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? FatherPrefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? FatherFirstName { get; set; }
|
|
|
|
|
|
public string? FatherLastName { get; set; }
|
2023-03-25 01:09:03 +07:00
|
|
|
|
public string? FatherOccupation { get; set; }
|
|
|
|
|
|
public string? FatherNationality { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Prefix? MotherPrefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? MotherPrefixId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? MotherPrefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? MotherFirstName { get; set; }
|
|
|
|
|
|
public string? MotherLastName { get; set; }
|
2023-03-25 01:09:03 +07:00
|
|
|
|
public string? MotherOccupation { get; set; }
|
|
|
|
|
|
public string? MotherNationality { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|