[Fix] Move UnityMCP

This commit is contained in:
2026-02-27 04:19:03 +07:00
parent 263259f3fc
commit 3b02df06fa
453 changed files with 1 additions and 1 deletions
@@ -0,0 +1,21 @@
using Newtonsoft.Json.Linq;
namespace MCPForUnity.Editor.Models
{
/// <summary>
/// Represents a command received from the MCP client
/// </summary>
public class Command
{
/// <summary>
/// The type of command to execute
/// </summary>
public string type { get; set; }
/// <summary>
/// The parameters for the command
/// </summary>
public JObject @params { get; set; }
}
}