unity-mcp/Editor/Models/MCPConfig.cs

13 lines
214 B
C#
Raw Normal View History

2025-03-20 19:24:31 +08:00
using System;
using Newtonsoft.Json;
namespace UnityMCP.Editor.Models
{
[Serializable]
public class MCPConfig
{
[JsonProperty("mcpServers")]
public MCPConfigServers mcpServers;
}
}