2025-03-15 01:39:43 +03:30

9 lines
124 B
C#

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