MenusTreeDto.cs 418 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using Volo.Abp.Application.Dtos;
  4. namespace BaseService.Systems.UserRoleMenusManagement.Dto
  5. {
  6. public class MenusTreeDto : EntityDto<Guid>
  7. {
  8. public Guid? Pid { get; set; }
  9. public string Label { get; set; }
  10. public string Name { get; set; }
  11. public int Sort { get; set; }
  12. public string Permission { get; set; }
  13. }
  14. }