unity-mcp/UnityMcpBridge/Editor/Models/MCPConfigServers.cs

13 lines
222 B
C#
Raw Normal View History

using System;
using Newtonsoft.Json;
namespace UnityMcpBridge.Editor.Models
{
[Serializable]
public class McpConfigServers
{
[JsonProperty("unityMCP")]
public McpConfigServer unityMCP;
}
}