Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Friend-only labels for route/shell ownership boundary evidence. These are
    ''' diagnostic governance labels only; they do not expose a public router,
    ''' page-host adapter, or native shell integration surface.
    ''' </summary>
    Friend Enum MASRouteShellBoundaryKind
        Unknown = 0
        AppLayoutRouteOwnership = 1
        MasterDetailRoutingAdapterBoundary = 2
        SplitViewShellIntegrationBoundary = 3
    End Enum

End Namespace
