- using System.Collections.Generic;
- namespace WeApp.BaseSystem.Users.Dto
- {
- public class PermissionAuthDto
- {
- public string Name { get; set; }
- public string PermDisplayName { get; set; }
- public int Sort { get; set; }
- public string Icon { get; set; }
- public bool IsOpen { get; set; }
- public bool IsAuth { get; set; }
- public List<PermissionAuthDto> Children { get; set; }
- }
- }
|