using MediatR; namespace Knot.Shared.Kernel; public interface IQuery : IRequest> { } public interface IQueryHandler : IRequestHandler> where TQuery : IQuery { }