hrms-api-backend/BMA.EHR.Application/Responses/Profiles/SearchProfileResultDto.cs

13 lines
309 B
C#
Raw Normal View History

namespace BMA.EHR.Application.Responses.Profiles
{
public class SearchProfileResultDto
{
2024-05-30 09:32:34 +07:00
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public List<SearchProfileDto> Result { get; set; } = new List<SearchProfileDto>();
}
}