11 lines
272 B
C#
11 lines
272 B
C#
namespace BMA.EHR.Application.Responses.Profiles
|
|
{
|
|
public class GetProfileByIdResultDto
|
|
{
|
|
public string Message { get; set; } = string.Empty;
|
|
|
|
public int Status { get; set; } = -1;
|
|
|
|
public GetProfileByIdDto? Result { get; set; }
|
|
}
|
|
}
|