Files
RemSox/UI/CLI/ICommand.cs
T
2026-06-08 12:30:37 +02:00

11 lines
156 B
C#

namespace RemSox.UI.GUI.CLI;
public interface ICommand
{
string Name { get; }
string Description { get; }
void Execute(string? arguments);
}