using Newtonsoft.Json.Linq; namespace LLM.Editor.Data { [System.Serializable] public class CommandData { public string commandName; /// /// The parameters for the command, stored as a flexible JSON object. /// This allows for both simple and complex, nested parameter structures. /// public JObject jsonData; } }