hrms-api-backend/BMA.EHR.Placement.Service/Requests/OrgRequestAct.cs
2026-01-21 17:00:45 +07:00

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; }
}
}