Option Strict On
Option Explicit On

Imports System

Namespace Nexamas.UI.Components.ContextMenu

    Friend NotInheritable Class MASContextMenuCommandEventArgs
        Inherits EventArgs

        Friend Sub New(commandId As String)
            Me.CommandId = If(commandId, String.Empty)
        End Sub

        Friend ReadOnly Property CommandId As String

    End Class

End Namespace