| 12345678910111213141516171819 |
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using Abp.Authorization;
- namespace VberZero.AppService.Roles.Dto;
- [AutoMapFrom(typeof(Permission))]
- public class PermissionDto : EntityDto<long>
- {
- 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<PermissionDto> Children { get; set; }
- }
|