9 lines
213 B
C#
9 lines
213 B
C#
namespace Hyperbar;
|
|
|
|
public interface IQueryHandler<in TQuery, TResponse>
|
|
where TQuery :
|
|
IQuery<TResponse>
|
|
{
|
|
ValueTask<TResponse> Handle(TQuery query,
|
|
CancellationToken cancellationToken);
|
|
} |