2025-07-23 16:18:05 +03:30

12 lines
173 B
C#

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