hrms-api-backend/BMA.EHR.Application/Responses/Organizations/GetIsOfficerResultDto.cs

11 lines
281 B
C#

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