Files
Echo/Assets/_Project/Scripts/LLM Manager/Commands/LLMCommandModels.cs
T

23 lines
384 B
C#
Raw Normal View History

2026-07-08 19:53:15 +08:00
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;
}
}