report leave

This commit is contained in:
kittapath 2024-12-13 11:52:58 +07:00
parent 12448ba0a4
commit 771b9b940a
17 changed files with 2109 additions and 305 deletions

View file

@ -0,0 +1,11 @@
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();
}
}