Option Strict On
Option Explicit On

Imports Nexamas.UI.Architecture

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Architecture marker contract for the reusable PanelShell dialog chrome surface.
    ''' It is the rendered chrome contract used by MessageBox, FilePicker,
    ''' FileExplorer, and generic PanelShellFloat hosts; hosted feature content remains
    ''' owned by the feature and must not invent a second outer shadow or radius source.
    ''' </summary>
    Friend NotInheritable Class MASPanelShellContract
        Implements IMASArchitecturalComponent

        Private Sub New()
        End Sub

    End Class

End Namespace
