27 lines
614 B
C#
27 lines
614 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 McpPromptDefinition
|
|
{
|
|
[JsonProperty("prompt")]
|
|
public Prompt Prompt { get; set; }
|
|
}
|
|
|
|
public partial class Prompt
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonProperty("arguments")]
|
|
public string Arguments { get; set; }
|
|
}
|
|
} |