7 lines
218 B
C#
7 lines
218 B
C#
namespace Toolkit.Framework.Foundation;
|
|
|
|
public interface IQueryHandler<in TQuery, TResponse> where TQuery : IQuery<TResponse>
|
|
{
|
|
ValueTask<TResponse> Handle(TQuery query, CancellationToken cancellationToken);
|
|
}
|