Option Strict On
Option Explicit On

Namespace Nexamas.UI.DataBinding

    ''' <summary>
    ''' Internal normalized data-source change vocabulary shared by future item, hierarchy,
    ''' matrix, agenda, and board adapters. It is evidence-only at this stage and does not
    ''' expose a public binding engine surface.
    ''' </summary>
    Friend Enum MASDataSourceChangeKind
        Unknown = 0
        Reset = 1
        Add = 2
        Remove = 3
        Replace = 4
        Move = 5
        ItemChanged = 6
        BatchBegin = 7
        BatchEnd = 8
    End Enum

End Namespace
