11 lines
331 B
C#
11 lines
331 B
C#
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; }
|
|
}
|
|
}
|