PermissionAuthDto.cs 441 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace WeApp.BaseSystem.Users.Dto
  3. {
  4. public class PermissionAuthDto
  5. {
  6. public string Name { get; set; }
  7. public string PermDisplayName { get; set; }
  8. public int Sort { get; set; }
  9. public string Icon { get; set; }
  10. public bool IsOpen { get; set; }
  11. public bool IsAuth { get; set; }
  12. public List<PermissionAuthDto> Children { get; set; }
  13. }
  14. }