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