Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Public button personality contract used by MASButton and button theme resolution.
    ''' Uses the MAS-prefixed public naming convention required by the canonical SDK surface.
    ''' </summary>
    Public Enum MASButtonPersonality
        MAS = 0
        Tal = 1
    End Enum

End Namespace