10 lines
237 B
C#
10 lines
237 B
C#
namespace Marco.Pms.Model.Dtos.Organization
|
|
{
|
|
public class OrganizationHierarchyDto
|
|
{
|
|
public Guid ReportToId { get; set; }
|
|
public bool IsPrimary { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|