mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-13 04:06:07 +08:00
9 lines
127 B
C#
9 lines
127 B
C#
using MediatR;
|
|
|
|
namespace BuildingBlocks.Core.CQRS;
|
|
|
|
public interface IQuery<out T> : IRequest<T>
|
|
where T : notnull
|
|
{
|
|
}
|