2022-06-17 01:44:05 +04:30

9 lines
127 B
C#

using MediatR;
namespace BuildingBlocks.Core.CQRS;
public interface IQuery<out T> : IRequest<T>
where T : notnull
{
}