namespace RemSox.UI.CLI.Commands; public sealed class ClearCommand : ICommand { public string Name => "clear"; public string Description => "Clear the screen"; public void Execute(string? arguments, Action printLine) { Console.Clear(); } }