| 1 | #nullable enable |
| 2 | |
| 3 | namespace CascadeIDE.Features.WorkspaceNavigation.Presentation; |
| 4 | |
| 5 | public sealed class WorkspaceCorrespondenceDocItemVm |
| 6 | { |
| 7 | public required string DocPath { get; init; } |
| 8 | |
| 9 | public required string DisplayTitle { get; init; } |
| 10 | |
| 11 | public string DisplayLine => $"{DisplayTitle} — {DocPath}"; |
| 12 | } |
| 13 |