hrms-api-backend/BMA.EHR.Application/Responses/Profiles/SearchProfileResultDto.cs
2024-05-30 09:32:34 +07:00

12 lines
309 B
C#

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