13 lines
272 B
C#
13 lines
272 B
C#
namespace Szmedi.AIScriptRunner.Web
|
|
{
|
|
[Serializable]
|
|
public class Permission
|
|
{
|
|
public List<AuthOperation> AuthOperationVO { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
|
|
public Dictionary<string, string> Role { get; set; }
|
|
}
|
|
|
|
}
|