5 lines
147 B
C#
5 lines
147 B
C#
namespace Toolkit.Framework.Foundation;
|
|
|
|
public interface ICommand<out TResponse> : IMessage { }
|
|
public interface ICommand : ICommand<Unit> { }
|