เครื่องราชเช็คตามรายการ

This commit is contained in:
kittapath 2024-11-14 11:00:22 +07:00
parent 2efc1910f6
commit a951378b1f
21 changed files with 57711 additions and 61 deletions

View file

@ -0,0 +1,9 @@
namespace BMA.EHR.Application.Responses.Organizations
{
public class GetIsOfficerDto
{
public bool isOfficer { get; set; }
public bool isStaff { get; set; }
public bool isDirector { get; set; }
}
}

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Application.Responses.Organizations
{
public class GetIsOfficerResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public GetIsOfficerDto Result { get; set; } = new();
}
}