/
CyberSys
/
unity-mcp-bridge
Обзор
Документация
Войти
/
CyberSys
/
unity-mcp-bridge
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
MCPForUnity/Editor/Models/Command.cs
20 строк
465 B
Marcus Sanatan
Rename plugin folder to MCPForUnity (#303)
04 окт 2025, 03:23
Не верифицирован
04 окт 2025, 03:23
e9b1ae4
Код
Авторство
О чём код?
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; } } }