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; } } }