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

12 lines
331 B
C#
Raw Permalink Normal View History

2025-08-01 17:08:11 +07:00
namespace BMA.EHR.Application.Responses.Profiles
{
public class GetOrgProfileByProfileIdDto
{
public string? Root { get; set; }
public string? Child1 { get; set; }
public string? Child2 { get; set; }
public string? Child3 { get; set; }
public string? Child4 { get; set; }
}
}