mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
11 lines
156 B
C#
11 lines
156 B
C#
namespace RemSox.UI.GUI.CLI;
|
|
|
|
public interface ICommand
|
|
{
|
|
string Name { get; }
|
|
|
|
string Description { get; }
|
|
|
|
void Execute(string? arguments);
|
|
}
|