- using System.Collections.Generic;
- namespace LLM.Editor.Data
- {
- /// <summary>
- /// A runtime class to pass temporary data between commands during execution.
- /// This does not get serialized.
- /// </summary>
- public class CommandContext
- {
- public Dictionary<string, object> transientData = new();
- }
- }
|