Query.cs 143 B

123456
  1. using MediatR;
  2. namespace Application.Features.Director.GetRoles
  3. {
  4. public sealed record GetAllRolesQuery() : IRequest<List<Response>>;
  5. }