MenusListDto.cs 426 B

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