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