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