hrms-api-backend/BMA.EHR.Retirement.Service/Requests/RetirementResignRequest.cs

22 lines
788 B
C#
Raw Permalink Normal View History

2023-08-08 11:04:41 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementResignRequest
{
public string? Location { get; set; }
2024-10-21 14:33:52 +07:00
// public DateTime? SendDate { get; set; }
2023-08-08 11:04:41 +07:00
public DateTime? ActiveDate { get; set; }
public string? Reason { get; set; }
public string? Remark { get; set; }
public string? OrganizationPositionOld { get; set; }
public string? PositionTypeOld { get; set; }
public string? PositionLevelOld { get; set; }
public string? PositionNumberOld { get; set; }
public string? RemarkHorizontal { get; set; }
public double? AmountOld { get; set; }
public List<FormFile>? File { get; set; }
2023-08-08 11:04:41 +07:00
}
}