hrms-api-backend/BMA.EHR.Application/Responses/Profiles/GetMarkStatusDto.cs
2025-05-23 17:54:36 +07:00

23 lines
784 B
C#

namespace BMA.EHR.Application.Responses.Profiles
{
public class GetMarkStatusDto
{
public Guid Id { get; set; }
public bool? MarkDiscipline { get; set; } = false;
public bool? MarkLeave { get; set; } = false;
public bool? MarkRate { get; set; } = false;
public bool? MarkInsignia { get; set; } = false;
public string? APR1 { get; set; }
public string? APR2 { get; set; }
public string? APR3 { get; set; }
public string? APR4 { get; set; }
public string? APR5 { get; set; }
public string? OCT1 { get; set; }
public string? OCT2 { get; set; }
public string? OCT3 { get; set; }
public string? OCT4 { get; set; }
public string? OCT5 { get; set; }
}
}