Forge
csharp4405de34
1using System.Text.Json;
2using System.Text.Json.Serialization;
3
4namespace AgentClientProtocol;
5
6public record ToolCallLocation
7{
8 [JsonPropertyName("_meta")]
9 public JsonElement? Meta { get; init; }
10
11 [JsonPropertyName("path")]
12 public required string Path { get; init; }
13
14 [JsonPropertyName("line")]
15 public uint? Line { get; init; }
16}
17
View only · write via MCP/CIDE