Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Public semantic field kinds for the MASDataForm visual form surface. The values describe
    ''' presentation intent only; binding, validation, persistence, and editor ownership remain
    ''' outside the DataForm control.
    ''' </summary>
    Public Enum MASDataFormFieldKind
        Text = 0
        Number = 1
        Selection = 2
        Toggle = 3
        [Date] = 4
        DateRange = 5
        Tags = 6
        Custom = 99
    End Enum

End Namespace
