mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 11:32:10 +08:00
10 lines
214 B
C#
10 lines
214 B
C#
using MediatR;
|
|
|
|
namespace BuildingBlocks.Core.CQRS;
|
|
|
|
public interface IQueryHandler<in TQuery, TResponse> : IRequestHandler<TQuery, TResponse>
|
|
where TQuery : IQuery<TResponse>
|
|
where TResponse : notnull
|
|
{
|
|
}
|