AbpUserAuthConfigDto.cs 289 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace Abp.Web.Models.AbpUserConfiguration
  3. {
  4. public class AbpUserAuthConfigDto
  5. {
  6. public Dictionary<string,string> AllPermissions { get; set; }
  7. public Dictionary<string, string> GrantedPermissions { get; set; }
  8. }
  9. }