hrms-api-backend/BMA.EHR.Application/Responses/Organizations/GetActiveRootResultDto.cs
2024-06-25 11:22:46 +07:00

11 lines
289 B
C#

namespace BMA.EHR.Application.Responses.Organizations
{
public class GetActiveRootResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public List<GetActiveRootDto> Result { get; set; } = new();
}
}