hrms-api-backend/BMA.EHR.Placement.Service/Requests/PlacementReceiveRequest.cs

23 lines
786 B
C#
Raw Normal View History

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<FormFile>? File { get; set; }
}
}