20 lines
792 B
C#
20 lines
792 B
C#
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
{
|
|
public class CandidateFamilyResponseItem
|
|
{
|
|
public bool? Marry { get; set; }
|
|
public Models.Prefix? MarryPrefix { get; set; }
|
|
public string? MarryPrefixId { get; set; }
|
|
public string? MarryFirstName { get; set; }
|
|
public string? MarryLastName { get; set; }
|
|
public Models.Prefix? FatherPrefix { get; set; }
|
|
public string? FatherPrefixId { get; set; }
|
|
public string? FatherFirstName { get; set; }
|
|
public string? FatherLastName { get; set; }
|
|
public Models.Prefix? MotherPrefix { get; set; }
|
|
public string? MotherPrefixId { get; set; }
|
|
public string? MotherFirstName { get; set; }
|
|
public string? MotherLastName { get; set; }
|
|
}
|
|
}
|