| 1 | using System.Text.Json.Serialization; |
| 2 | |
| 3 | namespace AgentClientProtocol; |
| 4 | |
| 5 | public 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 |