| 1 | using System.Text.Json; |
| 2 | using System.Text.Json.Serialization; |
| 3 | |
| 4 | namespace AgentClientProtocol; |
| 5 | |
| 6 | public record WaitForTerminalExitResponse |
| 7 | { |
| 8 | [JsonPropertyName("_meta")] |
| 9 | public JsonElement? Meta { get; init; } |
| 10 | |
| 11 | [JsonPropertyName("exitCode")] |
| 12 | public uint? ExitCode { get; init; } |
| 13 | |
| 14 | [JsonPropertyName("signal")] |
| 15 | public string? Signal { get; init; } |
| 16 | } |
| 17 |