Option Strict On
Option Explicit On

Namespace Nexamas.UI.FileSystem

    ''' <summary>
    ''' Defines the behavior mode of MAS file picker components.
    ''' </summary>
    ''' <remarks>
    ''' This enum is host-neutral.
    ''' It does not imply Overlay, Float, modal ownership, or closing behavior.
    ''' </remarks>
    Public Enum MASFilePickerMode
        OpenFile = 0
        SaveFile = 1
        PickTargets = 2
    End Enum

End Namespace