using Abp.Application.Services.Dto; using Abp.AutoMapper; using Abp.Authorization; namespace VberZero.AppService.Roles.Dto; [AutoMapFrom(typeof(Permission))] public class PermissionDto : EntityDto { public string Name { get; set; } public string DisplayName { get; set; } public int Sort { get; set; } public string Icon { get; set; } public bool IsOpen { get; set; } public bool IsAuth { get; set; } public string Description { get; set; } public List Children { get; set; } }