Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Friend-only authoring regions for composing premium component surfaces from multiple
    ''' official Surface Materials. These are semantic component regions, not public API and
    ''' not material identities.
    ''' </summary>
    Friend Enum MASComponentSurfaceRegion
        Unknown = 0
        Root = 1
        Background = 2
        Header = 3
        Body = 4
        Content = 5
        Footer = 6
        Toolbar = 7
        Chrome = 8
        Overlay = 9
        Floating = 10
        Item = 11
        SelectedItem = 12
        Viewport = 13
        Badge = 14
        Separator = 15
    End Enum

End Namespace
