16 lines
497 B
C#
16 lines
497 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
{
|
|
public class RetirementDeceasedRequest
|
|
{
|
|
public FormFile? File { get; set; }
|
|
public string? Number { get; set; }
|
|
public DateTime? Date { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? Reason { get; set; }
|
|
public string ProfileId { get; set; }
|
|
public string profileType { get; set; }
|
|
}
|
|
}
|