csharpdeeb25a2 | 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary>Настройки debug-hints в редакторе.</summary> |
| 4 | public sealed class EditorDebugHintsSettings |
| 5 | { |
| 6 | public bool Enabled { get; set; } = true; |
| 7 | |
| 8 | public bool ShowAssignments { get; set; } = true; |
| 9 | |
| 10 | public bool ShowConditions { get; set; } = true; |
| 11 | } |
| 12 | |
View only · write via MCP/CIDE