Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Command identifiers used by the FilePicker item/background context menus.
    ''' </summary>
    ''' <remarks>
    ''' These identifiers intentionally mirror the FileExplorer verbs, but stay FilePicker-owned so
    ''' the picker can keep its own command policy without depending on the FileExplorer feature.
    ''' </remarks>
    Friend NotInheritable Class MASFilePickerContextMenuCommands

        Private Sub New()
        End Sub

        Friend Const Open As String = "filePicker.open"
        Friend Const OpenInWindows As String = "filePicker.openInWindows"
        Friend Const Cut As String = "filePicker.cut"
        Friend Const Copy As String = "filePicker.copy"
        Friend Const CopyPath As String = "filePicker.copyPath"
        Friend Const Paste As String = "filePicker.paste"
        Friend Const Rename As String = "filePicker.rename"
        Friend Const Delete As String = "filePicker.delete"
        Friend Const Properties As String = "filePicker.properties"
        Friend Const Refresh As String = "filePicker.refresh"

    End Class

End Namespace
