| 1 | #nullable enable |
| 2 | |
| 3 | namespace CascadeIDE.Features.WorkspaceNavigation.Application; |
| 4 | |
| 5 | /// <summary>Минимальный контракт привязки док↔код (ADR 0128 / 0156), subset <c>AttachmentAnchor</c>.</summary> |
| 6 | public sealed record CodeAnchor( |
| 7 | string File, |
| 8 | int? LineStart = null, |
| 9 | int? LineEnd = null, |
| 10 | string? MemberKey = null, |
| 11 | string? SyntaxScope = null); |
| 12 |