hrms-api-backend/BMA.EHR.Discipline.Service/Requests/DisciplineReportRequest.cs

25 lines
551 B
C#
Raw Permalink Normal View History

2024-12-15 19:00:38 +07:00
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; }
2025-01-17 15:06:28 +07:00
public string? posType { get; set; }
2024-12-15 19:00:38 +07:00
2025-01-17 15:06:28 +07:00
public string? posLevel { get; set; }
2024-12-15 19:00:38 +07:00
}
}