| 1 | #nullable enable |
| 2 | |
| 3 | namespace CascadeIDE.Features.WorkspaceNavigation.Application; |
| 4 | |
| 5 | /// <summary>Документ ссылается на участок кода (reverse anchor, ADR 0156).</summary> |
| 6 | public sealed record DocReverseAnchorMatch( |
| 7 | string DocPath, |
| 8 | string DocTitle, |
| 9 | CodeAnchor CodeAnchor, |
| 10 | string Excerpt, |
| 11 | string Provenance, |
| 12 | int? DocLineHint, |
| 13 | string Kind = WorkspaceCorrespondenceCodeAnchorsLoader.DefaultKind); |
| 14 |