Option Strict On
Option Explicit On

Namespace Nexamas.UI.Application

    ''' <summary>
    ''' Public vocabulary for application-window presentation scale.
    ''' It describes the user's preferred window experience, not child-control layout or pixel bounds.
    ''' </summary>
    Public Enum MASWindowPresentationProfileKind
        Compact = 0
        Standard = 1
        Spacious = 2
        Productive = 3
        Immersive = 4
        Utility = 5
    End Enum

End Namespace
