15 lines
427 B
C#
15 lines
427 B
C#
|
|
using BMA.EHR.Domain.Models.MetaData;
|
||
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
||
|
|
{
|
||
|
|
public class RetirementUpdateResignInfoRequest
|
||
|
|
{
|
||
|
|
public string? Location { get; set; }
|
||
|
|
public string? ReasonResign { get; set; }
|
||
|
|
public string? Remark { get; set; }
|
||
|
|
public DateTime? SendDate { get; set; }
|
||
|
|
public DateTime? ActiveDate { get; set; }
|
||
|
|
}
|
||
|
|
}
|