19 lines
582 B
C#
19 lines
582 B
C#
namespace BMA.EHR.Application.Responses.Profiles
|
|
{
|
|
public class GetListProfileByKeycloakIdRootResultDto
|
|
{
|
|
public string Message { get; set; } = string.Empty;
|
|
|
|
public int Status { get; set; } = -1;
|
|
|
|
public List<GetProfileByKeycloakIdRootDto> Result { get; set; } = new();
|
|
}
|
|
public class GetListProfileByKeycloakIdRootResultAddTotalDto
|
|
{
|
|
public string Message { get; set; } = string.Empty;
|
|
|
|
public int Status { get; set; } = -1;
|
|
|
|
public GetProfileByKeycloakIdRootAddTotalDto Result { get; set; } = new();
|
|
}
|
|
}
|