no message

This commit is contained in:
kittapath 2024-11-06 10:20:17 +07:00
parent b98b02ac98
commit e7728d71bd
8 changed files with 242 additions and 298 deletions

View file

@ -0,0 +1,21 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class OrgPermissionRequest
{
public int Status { get; set; }
public string Message { get; set; }
public OrgPermissionRequestData? Result { get; set; }
}
public class OrgPermissionRequestData
{
public string?[]? Root { get; set; }
public string?[]? Child1 { get; set; }
public string?[]? Child2 { get; set; }
public string?[]? Child3 { get; set; }
public string?[]? Child4 { get; set; }
public string? Privilege { get; set; }
}
}