Files
Shrlalgo.RvKits/WPFUI.Test/Web/Permission.cs

13 lines
257 B
C#
Raw Normal View History

2026-01-01 10:02:59 +08:00
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; }
}
}