Option Strict On
Option Explicit On

Namespace Nexamas.UI.Theming

    ''' <summary>
    ''' Public button intent contract used by MASButton, MessageBox actions, toast actions, and float-panel actions.
    ''' Uses the MAS-prefixed public naming convention required by the canonical SDK surface.
    ''' </summary>
    Public Enum MASButtonIntent
        [Default] = 0
        Primary = 1
        Subtle = 2
        Danger = 3
    End Enum

End Namespace