Query.cs 163 B

123456
  1. using MediatR;
  2. namespace Application.Features.Director.GetRolePermissions
  3. {
  4. public sealed record GetRoleClaimsQuery(string RoleID) : IRequest<Response>;
  5. }