2025-07-23 16:18:05 +03:30

9 lines
213 B
C#

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