Option Strict On
Option Explicit On

Namespace Nexamas.UI.Quality

    ''' <summary>
    ''' Production promotion requirements used by the friend-only governance gate.
    ''' These values are diagnostic labels, not public API feature switches.
    ''' </summary>
    Friend Enum MASProductionPromotionRequirement
        Unknown = 0
        ArchitectureRegistration = 1
        PublicAddGateway = 2
        RelationCoverage = 3
        DedicatedRenderCoverage = 4
        DataSourceOrHostingContract = 5
        VirtualizationOrBoundedLayoutProof = 6
        PersistenceContract = 7
        PerformanceProof = 8
        PublicAdapterPolicy = 9
        DocumentationAndSamples = 10
        MeasuredRuntimeBenchmark = 11
        KeyboardAccessibilityStressProof = 12
        RuntimeFaultStrictMode = 13
        TimeMotionOwnership = 14
        ControlSpecificProductionGapClosure = 15
        HostingContractClosure = 16
        RoutingShellBoundaryClosure = 17
        ProviderHostAdoptionClosure = 18
        DashboardResizeHostSampleClosure = 19
        BenchmarkBaselineThresholdPolicy = 20
    End Enum

End Namespace
