using Microsoft.AspNetCore.Http; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Placement.Service.Requests { public class PlacementReceiveEditRequest { public string citizenId { get; set; } public string prefix { get; set; } public string firstName { get; set; } public string lastName { get; set; } public DateTime DateOfBirth { get; set; } public string? Gender { get; set; } public string? Nationality { get; set; } public string? Race { get; set; } public string? Religion { get; set; } public string? BloodGroup { get; set; } public string? Relationship { get; set; } public string? TelephoneNumber { get; set; } public string? Reason { get; set; } public string? EducationOld { get; set; } public string? OrganizationPositionOld { get; set; } public string? PositionTypeOld { get; set; } public string? PositionLevelOld { get; set; } public string? PositionNumberOld { get; set; } public double? Amount { get; set; } public double? AmountOld { get; set; } } }