csharpdeeb25a2 | 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary>Тонкая настройка inlay hints в редакторе.</summary> |
| 4 | public sealed class EditorInlineHintsSettings |
| 5 | { |
| 6 | public bool Enabled { get; set; } = true; |
| 7 | |
| 8 | public bool ParameterNames { get; set; } = true; |
| 9 | |
| 10 | public bool VariableTypes { get; set; } = true; |
| 11 | } |
| 12 | |
View only · write via MCP/CIDE