using Microsoft.AspNetCore.Http; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Placement.Service.Requests { public class PlacementReceiveRequest { public string citizenId { get; set; } public string prefix { get; set; } public string firstName { get; set; } public string lastName { get; set; } public DateTime BirthDate { get; set; } public Guid? GenderId { get; set; } public string? Nationality { get; set; } public string? Race { get; set; } public Guid? ReligionId { get; set; } public Guid? BloodGroupId { get; set; } public Guid? RelationshipId { get; set; } public string? TelephoneNumber { get; set; } public List? File { get; set; } } }