15 lines
197 B
C#
15 lines
197 B
C#
namespace TermApp.Core
|
|
{
|
|
|
|
public interface ICommand
|
|
{
|
|
|
|
string Name { get; }
|
|
string Description { get; }
|
|
void Execute(string[] args, string input = null);
|
|
|
|
}
|
|
|
|
}
|
|
|