using System.Collections.Generic; using Abp.Application.Services.Dto; using Abp.Authorization; using Abp.AutoMapper; namespace WeApp.BaseSystem.Roles.Dto { [AutoMapFrom(typeof(Permission))] public class PermissionDto : EntityDto { public PermissionDto Parent { get; set; } public string Name { get; set; } public string PermDisplayName { get; set; } public int Sort { get; set; } public bool IsAuth { get; set; } public List Children { get; set; } } }