Option Strict On
Option Explicit On

Namespace Nexamas.UI.Application

    ''' <summary>
    ''' Public SDK-level outcome for a request that attempts to show an application surface.
    ''' </summary>
    Public Enum MASApplicationSurfaceShowStatus
        Rejected = 0
        Opened = 1
        Queued = 2
        Reused = 3
    End Enum

End Namespace
