csharpdeeb25a2 | 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary>Local workspace hint per normalized repo URL (ADR 0144 §2.3.1).</summary> |
| 4 | public sealed class IntercomWorkspaceHintEntry |
| 5 | { |
| 6 | public string TeamId { get; set; } = ""; |
| 7 | |
| 8 | public string ProjectId { get; set; } = ""; |
| 9 | |
| 10 | public string UpdatedAtUtc { get; set; } = ""; |
| 11 | |
| 12 | /// <summary>resolve | manual | manifest_strangler</summary> |
| 13 | public string Source { get; set; } = ""; |
| 14 | } |
| 15 | |
View only · write via MCP/CIDE