All checks were successful
Build & Deploy Placement Service / build (push) Successful in 1m11s
20 lines
No EOL
597 B
C#
20 lines
No EOL
597 B
C#
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; }
|
|
}
|
|
} |