Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Internal ownership roles for interactive component chrome. These roles are generic
    ''' chrome responsibilities, not surface material identities and not element names.
    ''' </summary>
    Friend Enum MASComponentChromeRole
        Unknown = 0
        Action = 1
        InputField = 2
        Chip = 3
        Bar = 4
    End Enum

End Namespace
