namespace RemSox.UI.GUI.CLI;
using System;
///
/// Defines a command executable via the CLI or GUI terminal.
///
public interface ICommand
{
///
/// Gets the name of the command used to invoke it.
///
string Name { get; }
///
/// Gets a brief description of the command's functionality.
///
string Description { get; }
///
/// Executes the command.
///
/// The arguments provided to the command.
/// A delegate to stream output lines to the current console or terminal.
void Execute(string? arguments, Action printLine);
}