csharpdeeb25a2 | 1 | namespace CascadeIDE.ViewModels; |
| 2 | |
| 3 | /// <summary>Строка списка карты намерений (режим <c>related</c>, ADR 0039).</summary> |
| 4 | public sealed class WorkspaceNavigationMapItemVm |
| 5 | { |
| 6 | public required string FullPath { get; init; } |
| 7 | public required string RelativePath { get; init; } |
| 8 | public required string Kind { get; init; } |
| 9 | public required string Rationale { get; init; } |
| 10 | |
| 11 | public string KindRationaleLine => |
| 12 | string.IsNullOrEmpty(Rationale) ? Kind : $"{Kind} · {Rationale}"; |
| 13 | } |
| 14 | |
View only · write via MCP/CIDE