using LLM.Editor.Data; namespace LLM.Editor.Commands { public interface ICommand { /// /// Executes the command. /// /// A context object to pass runtime data between commands. public void Execute(CommandContext context); } }