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