Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Governance status for proving that material/frame pairings can later become runtime proof
    ''' without repainting existing frames or migrating interactive controls.
    ''' </summary>
    Friend Enum MASSurfaceTreatmentFrameRuntimeProofPlanningStatus
        Unknown = 0
        PlannedLowRiskFrameRuntimeProof = 1
        BlockedByFramePairingEvidence = 2
        BlockedByRuntimeAlignmentEvidence = 3
        BlockedByFrameOverrideMismatch = 4
        IncompleteEvidence = 5
    End Enum

End Namespace
