Option Strict On
Option Explicit On

Imports SkiaSharp

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Resolved geometry for the reusable Media content regions inside the shared PanelShell.
    ''' The outer shell, shadow, frame, and radius remain owned by PanelShell; Media owns the inner chrome layout.
    ''' </summary>
    Friend Structure MASMediaContainerLayoutPlan
        Friend Surface As SKRect
        Friend PreviewFrame As SKRect
        Friend Toolbar As SKRect
        Friend Stage As SKRect
        Friend Viewport As SKRect
        Friend Footer As SKRect
        Friend ToolbarFloating As Boolean
    End Structure

End Namespace
