GetRoleForEditOutput.cs 299 B

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