Option Strict On
Option Explicit On

Namespace Nexamas.UI.Verification

    ''' <summary>
    ''' Describes the exact render-verification coverage graph gap detected by the catalog audit.
    ''' </summary>
    Friend Enum MASRenderVerificationCoverageFindingKind
        MissingCaptureScene = 0
        OrphanCaptureScene = 1
        UnusedTarget = 2
        UnmappedComponentCoverage = 3
        MissingCatalogScenario = 4
    End Enum

End Namespace
