Files
SzmediTools/WPFUI.Test/Web/Permission.cs
2025-09-16 16:06:41 +08:00

13 lines
257 B
C#

namespace WPFUI.Test
{
[Serializable]
public class Permission
{
public List<AuthOperation> AuthOperationVO { get; set; }
public bool IsAdmin { get; set; }
public Dictionary<string, string> Role { get; set; }
}
}