GetRoleForEditOutput.cs 283 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace VberZero.AppService.Roles.Dto;
  3. public class GetRoleForEditOutput
  4. {
  5. public RoleEditDto Role { get; set; }
  6. public List<FlatPermissionDto> Permissions { get; set; }
  7. public List<string> GrantedPermissionNames { get; set; }
  8. }