Option Strict On
Option Explicit On

Namespace Nexamas.UI.CommandActions

     ''' <summary>
     ''' Internal surface vocabulary used by the unified Command / Action System foundation.
     ''' </summary>
    Friend Enum MASCommandBindingSurfaceKind
        Programmatic = 0
        Button = 1
        Menu = 2
        Shortcut = 3
        Toolbar = 4
        CommandBar = 5
        CommandPalette = 6
        MenuBar = 7
    End Enum

End Namespace
