hrms-api-backend/BMA.EHR.Application/Responses/Profiles/GetOrgProfileByProfileIdResultDto.cs
kittapath 0c9ec3dd43
Some checks failed
release-dev / release-dev (push) Failing after 12s
lock insignia
2025-08-01 17:08:11 +07:00

11 lines
292 B
C#

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; }
}
}