using BMA.EHR.Domain.Models.MetaData; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Placement.Service.Requests { public class PersonInformationRequest { public string? CitizenId { get; set; } public Guid? PrefixId { get; set; } public string? FirstName { get; set; } public string? LastName { get; set; } public Guid? GenderId { get; set; } public string? Nationality { get; set; } public string? Race { get; set; } public Guid? ReligionId { get; set; } public DateTime? BirthDate { get; set; } public Guid? BloodGroupId { get; set; } public Guid? RelationshipId { get; set; } public string? TelephoneNumber { get; set; } } }