hrms-api-backend/BMA.EHR.Discipline.Service/Requests/DisciplineSuspendRequest.cs
2024-05-29 16:29:12 +07:00

17 lines
592 B
C#

using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineSuspendRequest
{
public string? Organization { get; set; }
public string? Position { get; set; }
public string? PosNo { get; set; }
public string? PositionLevel { get; set; }
public string? PositionType { get; set; }
public double? Salary { get; set; }
public string? DescriptionSuspend { get; set; }
public DateTime? StartDateSuspend { get; set; }
public DateTime? EndDateSuspend { get; set; }
}
}