13 lines
219 B
C#
13 lines
219 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace MCPForUnity.Editor.Models
|
||
|
|
{
|
||
|
|
[Serializable]
|
||
|
|
public class McpConfigServers
|
||
|
|
{
|
||
|
|
[JsonProperty("unityMCP")]
|
||
|
|
public McpConfigServer unityMCP;
|
||
|
|
}
|
||
|
|
}
|