| 123456789101112 |
- using System.Collections.Generic;
- namespace Abp.Web.Models.AbpUserConfiguration
- {
- public class AbpUserAuthConfigDto
- {
- public Dictionary<string,string> AllPermissions { get; set; }
- public Dictionary<string, string> GrantedPermissions { get; set; }
-
- }
- }
|