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

13 lines
177 B
C#

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