Option Strict On
Option Explicit On

Namespace Nexamas.UI.Certification

    ''' <summary>
    ''' Describes how a registered architectural component is covered by the MAS quality evidence graph.
    ''' </summary>
    Friend Enum MASQualityComponentCoverageKind
        Unclassified = 0
        DirectRenderScenario = 1
        FamilyRenderScenario = 2
        AtomicContractProof = 3
        SizeLayoutContractProof = 4
        SurfaceMaterialProof = 5
        InteractionStateProof = 6
        SystemInventoryProof = 7
        OutOfScopeWithReason = 8
    End Enum

End Namespace
