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