csharpdeeb25a2 | 1 | #nullable enable |
| 2 | |
| 3 | using System.Text.Json.Serialization; |
| 4 | |
| 5 | namespace CascadeIDE.Models.Intercom; |
| 6 | |
| 7 | /// <summary>Снимок workspace отправителя @ send (ADR 0128 §3.1).</summary> |
| 8 | public sealed record SenderWorkspaceContext( |
| 9 | [property: JsonPropertyName("git_branch")] string? GitBranch = null, |
| 10 | [property: JsonPropertyName("git_commit_short")] string? GitCommitShort = null, |
| 11 | [property: JsonPropertyName("solution_path")] string? SolutionPath = null, |
| 12 | [property: JsonPropertyName("captured_at_utc")] string? CapturedAtUtc = null); |
| 13 | |
View only · write via MCP/CIDE