Forge
csharp4405de34
1using System.Text.Json.Serialization;
2
3namespace AgentClientProtocol;
4
5public record Implementation
6{
7 [JsonPropertyName("name")]
8 public required string Name { get; init; }
9
10 [JsonPropertyName("version")]
11 public required string Version { get; init; }
12
13 [JsonPropertyName("title")]
14 public string? Title { get; init; }
15}
16
View only · write via MCP/CIDE