CommandData.cs 410 B

12345678910111213141516
  1. using Newtonsoft.Json.Linq;
  2. namespace LLM.Editor.Data
  3. {
  4. [System.Serializable]
  5. public class CommandData
  6. {
  7. public string commandName;
  8. /// <summary>
  9. /// The parameters for the command, stored as a flexible JSON object.
  10. /// This allows for both simple and complex, nested parameter structures.
  11. /// </summary>
  12. public JObject jsonData;
  13. }
  14. }