mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-13 04:06:07 +08:00
10 lines
217 B
C#
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
|
|
{
|
|
}
|