123456789101112131415 |
- using LLM.Editor.Data;
- namespace LLM.Editor.Commands
- {
- public enum CommandOutcome { Success, Error }
-
- public interface ICommand
- {
- /// <summary>
- /// Executes the command.
- /// </summary>
- /// <param name="context">A context object to pass runtime data between commands.</param>
- public CommandOutcome Execute(CommandContext context);
- }
- }
|