CommandContext.cs 330 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace LLM.Editor.Data
  3. {
  4. /// <summary>
  5. /// A runtime class to pass temporary data between commands during execution.
  6. /// This does not get serialized.
  7. /// </summary>
  8. public class CommandContext
  9. {
  10. public Dictionary<string, object> transientData = new();
  11. }
  12. }