30 lines
744 B
C#
30 lines
744 B
C#
namespace LinkToolAddin.host.mcp
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
public partial class SseMcpServer : McpServer
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonProperty("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonProperty("isActive")]
|
|
public bool IsActive { get; set; }
|
|
|
|
[JsonProperty("baseUrl")]
|
|
public string BaseUrl { get; set; }
|
|
|
|
[JsonProperty("headers")]
|
|
public Dictionary<string,string> Headers { get; set; }
|
|
}
|
|
} |