hrms-api-backend/BMA.EHR.Placement.Service/Requests/OrgRequestAct.cs

20 lines
597 B
C#
Raw Permalink Normal View History

2024-10-28 16:01:48 +07:00
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; }
2024-10-28 16:01:48 +07:00
}
}