- using System.Collections.Generic;
- namespace VberZero.AppService.Roles.Dto;
- public class GetRoleForEditOutput
- {
- public RoleEditDto Role { get; set; }
- public List<FlatPermissionDto> Permissions { get; set; }
- public List<string> GrantedPermissionNames { get; set; }
- }
|