Forge
csharpdeeb25a2
1#nullable enable
2
3namespace CascadeIDE.Features.WorkspaceNavigation.Presentation;
4
5public 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
View only · write via MCP/CIDE