mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-10 17:59:38 +08:00
9 lines
213 B
C#
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
|
|
{
|
|
} |