namespace SQLLinter.Core.Interfaces.Config.Contracts; public interface IRequestHandler where TRequest : IRequest { TResponse Handle(TRequest request); } public interface IRequestHandler where TRequest : IRequest { void Handle(TRequest message); } public interface IRequest { } public interface IRequest { }