hrms-api-backend/BMA.EHR.Discipline.Service/Requests/DisciplineReportRequest.cs
2024-12-15 19:00:38 +07:00

24 lines
549 B
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineReportRequest
{
public string nodeId { get; set; }
public int node { get; set; }
public int year { get; set; }
public string offenseDetail { get; set; }
public string disciplinaryFaultLevel { get; set; }
public string status { get; set; }
public string posType { get; set; }
public string posLevel { get; set; }
}
}