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