Option Strict On
Option Explicit On

Namespace Nexamas.UI.FloatRuntime

    ''' <summary>
    ''' Architecture marker contract for the FileExplorer ViewMode child float menu.
    '''
    ''' This is a marker only:
    ''' - It is not the actual rendered menu content.
    ''' - It does not own lifecycle.
    ''' - It represents the architectural identity of MAS.FileExplorer.ViewModeMenu.
    ''' </summary>
    Friend NotInheritable Class MASFileExplorerViewModeMenuFloatContract
        Implements Nexamas.UI.Architecture.IMASArchitecturalComponent

        Private Sub New()
        End Sub

    End Class

End Namespace