2025-05-16 17:35:44 +07:00
|
|
|
|
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;
|
|
|
|
|
|
|
2025-05-23 17:54:36 +07:00
|
|
|
|
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; }
|
2025-05-16 17:35:44 +07:00
|
|
|
|
|
2025-05-23 17:54:36 +07:00
|
|
|
|
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; }
|
2025-05-16 17:35:44 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|