no message
This commit is contained in:
parent
b98b02ac98
commit
e7728d71bd
8 changed files with 242 additions and 298 deletions
21
BMA.EHR.Placement.Service/Requests/OrgPermissionRequest.cs
Normal file
21
BMA.EHR.Placement.Service/Requests/OrgPermissionRequest.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue