Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Friend-only readiness status for the MASTreeGrid public hierarchy-with-columns visual surface.
    ''' </summary>
    Friend Enum MASTreeGridReadinessStatus
        Ready = 0
        IncompleteEvidence = 1
        BlockedByStorageLeak = 2
        BlockedByExternalProviderLeak = 3
        BlockedByBindingEngineLeak = 4
        BlockedByWrapperLeak = 5
        BlockedByVirtualizationEngineLeak = 6
    End Enum

End Namespace
