ICommand.cs 329 B

12345678910111213
  1. using LLM.Editor.Data;
  2. namespace LLM.Editor.Commands
  3. {
  4. public interface ICommand
  5. {
  6. /// <summary>
  7. /// Executes the command.
  8. /// </summary>
  9. /// <param name="context">A context object to pass runtime data between commands.</param>
  10. public void Execute(CommandContext context);
  11. }
  12. }