fix : Leave and Insignia (Not Complete)
This commit is contained in:
parent
89b4c71dbd
commit
c85bece782
14 changed files with 18266 additions and 88 deletions
|
|
@ -0,0 +1,41 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BMA.EHR.Application.Responses.Organizations
|
||||
{
|
||||
public class GetOrganizationResponseDTO
|
||||
{
|
||||
public Guid? RootId { get; set; }
|
||||
|
||||
public string? Root { get; set; }
|
||||
|
||||
public string? RootShortName { get; set; }
|
||||
|
||||
public Guid? Child1Id { get; set; }
|
||||
|
||||
public string? Child1 { get; set; }
|
||||
|
||||
public string? Child1ShortName { get; set; }
|
||||
|
||||
public Guid? Child2Id { get; set; }
|
||||
|
||||
public string? Child2 { get; set; }
|
||||
|
||||
public string? Child2ShortName { get; set; }
|
||||
|
||||
public Guid? Child3Id { get; set; }
|
||||
|
||||
public string? Child3 { get; set; }
|
||||
|
||||
public string? Child3ShortName { get; set; }
|
||||
|
||||
public Guid? Child4Id { get; set; }
|
||||
|
||||
public string? Child4 { get; set; }
|
||||
|
||||
public string? Child4ShortName { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue