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

12 lines
310 B
C#

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