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

12 lines
281 B
C#
Raw Normal View History

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