using BMA.EHR.Domain.Models.MetaData; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Placement.Service.Requests { public class OrgRequestAct { public OrgRequestActData result { get; set; } = new(); } public class OrgRequestActData { public bool? isOfficer { get; set; } public string? rootId { get; set; } public string? child1Id { get; set; } public string? child2Id { get; set; } public string? child3Id { get; set; } public string? child4Id { get; set; } public string? rootDnaId { get; set; } } }