hrms-api-backend/BMA.EHR.Placement.Service/Requests/PersonFamilyRequest.cs
2024-05-16 17:00:47 +07:00

41 lines
1.7 KiB
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PersonFamilyRequest
{
public bool? Couple { get; set; }
public string? CouplePrefix { get; set; }
public string? CoupleFirstName { get; set; }
public string? CoupleLastName { get; set; }
public string? CoupleLastNameOld { get; set; }
public string? CoupleCareer { get; set; }
// public string? CoupleCitizenId { get; set; }
// public bool CoupleLive { get; set; }
public string? FatherPrefix { get; set; }
public string? FatherFirstName { get; set; }
public string? FatherLastName { get; set; }
public string? FatherCareer { get; set; }
// public string? FatherCitizenId { get; set; }
// public bool FatherLive { get; set; }
public string? MotherPrefix { get; set; }
public string? MotherFirstName { get; set; }
public string? MotherLastName { get; set; }
public string? MotherCareer { get; set; }
// public string? MotherCitizenId { get; set; }
// public bool MotherLive { get; set; }
// public virtual List<ProfileChildrenRequest> Childrens { get; set; } = new List<ProfileChildrenRequest>();
}
// public class ProfileChildrenRequest
// {
// public Guid? ChildrenPrefixId { get; set; }
// public string? ChildrenFirstName { get; set; }
// public string? ChildrenLastName { get; set; }
// public string? ChildrenCareer { get; set; }
// public string? ChildrenCitizenId { get; set; }
// public string ChildrenLive { get; set; }
// }
}