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

12 lines
292 B
C#
Raw Permalink Normal View History

2025-08-01 17:08:11 +07:00
namespace BMA.EHR.Application.Responses.Profiles
{
public class GetOrgProfileByProfileIdResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public GetOrgProfileByProfileIdDto? Result { get; set; }
}
}