Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Governance status for material-specific frame pairing inside the existing VisualSurfaceFrame.
    ''' These statuses do not repaint runtime controls.
    ''' </summary>
    Friend Enum MASSurfaceTreatmentFramePairingStatus
        Unknown = 0
        PlannedPlatformDefaultFramePairing = 1
        PlannedThemeTintedMaterialFramePairing = 2
        PlannedIdentityPreservingMaterialFramePairing = 3
        CompatibilityAliasUsesCanonicalFrame = 4
        BlockedByMissingSurfaceFrameId = 5
        BlockedByParallelFrameSystem = 6
    End Enum

End Namespace
