namespace Just.Cqrs.Internal; /// /// Marker interface for static type checking. Should not be used directly. /// public interface IGenericHandler where TRequest : notnull { ValueTask Handle(TRequest request, CancellationToken cancellation); }