Option Strict On
Option Explicit On

Imports System

Namespace Nexamas.UI.Components

    Public NotInheritable Class MASTopBarWindowCommandEventArgs
        Inherits EventArgs

        Friend Sub New(command As MASTopBarWindowCommand)
            Me.Command = command
        End Sub

        Public ReadOnly Property Command As MASTopBarWindowCommand
    End Class

End Namespace