api ลาออก

This commit is contained in:
Kittapath 2023-08-08 11:04:41 +07:00
parent 7b038f0131
commit ed52581e58
15 changed files with 788 additions and 72 deletions

View file

@ -0,0 +1,15 @@
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 Guid ProfileId { get; set; }
}
}