unity-mcp/Editor/Models/MCPConfigServers.cs

13 lines
216 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 MCPConfigServers
{
[JsonProperty("unityMCP")]
public MCPConfigServer unityMCP;
}
}