using MediatR; namespace Application.Features.Director.GetRoles { public sealed record GetAllRolesQuery() : IRequest<List<Response>>; }