unity-mcp/Editor/Models/MCPConfigServer.cs

16 lines
266 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 MCPConfigServer
{
[JsonProperty("command")]
public string command;
[JsonProperty("args")]
public string[] args;
}
}