Files
AX-Copilot-Codex/.decompiledproj/AxCopilot/Models/McpParameterDef.cs

11 lines
202 B
C#

namespace AxCopilot.Models;
public class McpParameterDef
{
public string Type { get; set; } = "string";
public string Description { get; set; } = "";
public bool Required { get; set; } = false;
}