22 lines
786 B
C#
22 lines
786 B
C#
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 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 List<FormFile>? File { get; set; }
|
|
}
|
|
}
|