mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
13 lines
197 B
C#
13 lines
197 B
C#
namespace RemSox.UI.GUI.CLI;
|
|
|
|
using System;
|
|
|
|
public interface ICommand
|
|
{
|
|
string Name { get; }
|
|
|
|
string Description { get; }
|
|
|
|
void Execute(string? arguments, Action<string> printLine);
|
|
}
|