Option Strict On
Option Explicit On

Namespace Nexamas.UI.Controls

    ''' <summary>
    ''' Narrow public state vocabulary for a step in MASStepper / MASWizard.
    ''' </summary>
    Public Enum MASStepperStepState
        Pending = 0
        Current = 1
        Completed = 2
        Disabled = 3
        [Error] = 4
    End Enum

End Namespace
