8 lines
121 B
C#
8 lines
121 B
C#
|
|
public interface ICommand
|
||
|
|
{
|
||
|
|
|
||
|
|
string Name { get; }
|
||
|
|
string Description { get; }
|
||
|
|
void Execute(string[] args);
|
||
|
|
|
||
|
|
}
|