Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Public progress tone/state contract used by MASProgressBar.VisualState and fluent state helpers.
    ''' It is intentionally small and stable so external projects do not need access to renderer or theme internals.
    ''' </summary>
    Public Enum MASProgressBarState
        Normal = 0
        Success = 1
        Warning = 2
        Danger = 3
    End Enum

End Namespace