23 lines
384 B
C#
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;
|
|
}
|
|
}
|
|
|