15 lines
349 B
C#
15 lines
349 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AxCopilot.Models;
|
|
|
|
public class McpToolDefinition
|
|
{
|
|
public string Name { get; set; } = "";
|
|
|
|
public string Description { get; set; } = "";
|
|
|
|
public string ServerName { get; set; } = "";
|
|
|
|
public Dictionary<string, McpParameterDef> Parameters { get; set; } = new Dictionary<string, McpParameterDef>();
|
|
}
|