ระบบลาออกเพิ่มstepยับยั้ง

This commit is contained in:
DESKTOP-2S5P7D1\Windows 10 2023-08-29 11:47:01 +07:00
parent 069ee389e0
commit 27724dffb5
3 changed files with 146 additions and 0 deletions

View file

@ -0,0 +1,11 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementReasonDateRequest
{
public string Reason { get; set; }
public DateTime Date { get; set; }
}
}