Option Strict On
Option Explicit On

Namespace Nexamas.UI.Application

    ''' <summary>
    ''' Public application-level result returned by MessageBox-style dialog surfaces.
    ''' </summary>
    ''' <remarks>
    ''' MessageBox rendering and FloatRuntime completion are internal Nexamas UI details.
    ''' External consumers receive this stable public enum through MASApplicationResult.Value
    ''' when using MASApplicationWindow.Services.Dialogs.
    ''' </remarks>
    Friend Enum MASApplicationDialogResult
        None = 0
        OK = 1
        Cancel = 2
        Yes = 3
        No = 4
        Retry = 5
        Abort = 6
        Ignore = 7
        Close = 8
    End Enum

End Namespace
