Files
2026-07-08 20:42:51 +08:00

23 lines
384 B
C#

using System;
namespace LLM.Commands
{
[Serializable]
public class LLMCommandEnvelope
{
public string text;
public LLMCommand[] commands;
}
[Serializable]
public class LLMCommand
{
public string type;
public string targetId;
public string action;
public bool value;
public string payload;
}
}