using MediatR; namespace Knot.Contracts.Admin.Abstractions; public interface IQuery : IRequest> { } public interface IQueryHandler : IRequestHandler> where TQuery : IQuery { }