Option Strict On
Option Explicit On

Namespace Nexamas.UI.Verification

    ''' <summary>
    ''' Display state for one MASComponentRegistry descriptor inside the Render Verification dashboard.
    ''' </summary>
    ''' <remarks>
    ''' This is a read-model state only. The actual evidence still comes from the existing component coverage map,
    ''' Render Verification snapshot entries, and coverage graph audit.
    ''' </remarks>
    Friend Enum MASRenderVerificationElementCoverageState
        Unclassified = 0
        Matched = 1
        VisualReview = 2
        Changed = 3
        Invalid = 4
        MissingSnapshot = 5
        ContractProof = 6
    End Enum

End Namespace
