Forge
csharpdeeb25a2
1namespace CascadeIDE.Services.Presentation;
2
3/// <summary>Physical monitors at resolve time (ADR 0171 auto tier).</summary>
4public readonly record struct PresentationMonitorSnapshot(
5 int PhysicalScreenCount,
6 int PrimaryWorkingAreaWidthPx,
7 int PrimaryWorkingAreaHeightPx,
8 int TotalWorkingAreaWidthPx)
9{
10 public static PresentationMonitorSnapshot SingleFallback { get; } = new(1, 1920, 1080, 1920);
11}
12
View only · write via MCP/CIDE