7 lines
No EOL
134 B
C#
7 lines
No EOL
134 B
C#
using MediatR;
|
|
|
|
namespace Femto.Common.Domain;
|
|
|
|
public interface ICommand : IRequest;
|
|
|
|
public interface ICommand<out T> : IRequest<T>; |