12 lines
309 B
C#
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>();
|
|
|
|
}
|
|
}
|