csharpdeeb25a2 | 1 | namespace CascadeIDE.Models; |
| 2 | |
| 3 | /// <summary>Окно-хост зоны Mfd (ADR 0017). TOML: <c>[display.mfd]</c>.</summary> |
| 4 | public sealed class DisplayMfdHostSettings |
| 5 | { |
| 6 | public bool OpenOnStartup { get; set; } = true; |
| 7 | |
| 8 | public int? PixelX { get; set; } |
| 9 | |
| 10 | public int? PixelY { get; set; } |
| 11 | |
| 12 | public double? Width { get; set; } |
| 13 | |
| 14 | public double? Height { get; set; } |
| 15 | } |
| 16 | |
View only · write via MCP/CIDE