2022-06-17 01:44:05 +04:30

10 lines
217 B
C#

using MediatR;
namespace BuildingBlocks.Core.CQRS;
public interface IQueryHandler<in TQuery, TResponse> : IRequestHandler<TQuery, TResponse>
where TQuery : IQuery<TResponse>
where TResponse : notnull
{
}