Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Public visual state for MASDataForm field rows. The state is display-only and does not
    ''' introduce a validation engine, rule registry, binder, or persistence route.
    ''' </summary>
    Public Enum MASDataFormFieldState
        Normal = 0
        Required = 1
        Success = 2
        Warning = 3
        [Error] = 4
        Disabled = 5
        [ReadOnly] = 6
    End Enum

End Namespace
