Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Visual state for an item displayed by <see cref="MASTimeline"/>. The enum describes
    ''' presentation only; workflow execution, audit storage, history persistence, and live
    ''' event streams remain application-owned or system-owned outside the control.
    ''' </summary>
    Public Enum MASTimelineItemState
        Normal = 0
        Completed = 1
        Current = 2
        Warning = 3
        [Error] = 4
        Disabled = 5
    End Enum

End Namespace
