| 1234567891011121314151617181920 |
- using System;
- using Volo.Abp.Application.Dtos;
- namespace BaseService.Systems.UserRoleMenusManagement.Dto
- {
- public class MenusListDto : EntityDto<Guid>
- {
- public Guid? Pid { get; set; }
- public string Label { get; set; }
- public string Name { get; set; }
- public int Sort { get; set; }
- public string Permission { get; set; }
- public bool IsHost { get; set; }
- }
- }
|