csharpdeeb25a2 | 1 | using CascadeIDE.Models; |
| 2 | |
| 3 | namespace CascadeIDE.ViewModels; |
| 4 | |
| 5 | /// <summary>Режим панели карты намерений: список, мини-граф или оба (ADR 0039, <c>[code_navigation_map].view</c>).</summary> |
| 6 | public static class CodeNavigationMapPresentationKind |
| 7 | { |
| 8 | public const string List = "list"; |
| 9 | public const string Graph = "graph"; |
| 10 | public const string Both = "both"; |
| 11 | |
| 12 | public static string Normalize(string? value) => CodeNavigationMapSettings.NormalizeView(value); |
| 13 | } |
| 14 | |
View only · write via MCP/CIDE