no message

This commit is contained in:
kittapath 2024-10-28 16:01:48 +07:00
parent 5e4394fd33
commit b0765fa2ca
2 changed files with 277 additions and 251 deletions

View file

@ -0,0 +1,19 @@
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; }
}
}