//
// WindowsMessageEventArgs.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.ComponentModel;
using NosSmooth.LocalBinding.Structs;
namespace NosSmooth.LocalBinding.EventArgs;
///
/// Event arguments for windows message.
///
public class WindowsMessageEventArgs : CancelEventArgs
{
///
/// Gets the sent message.
///
public Message Message { get; }
///
/// Initializes a new instance of the class.
///
/// The windows message.
public WindowsMessageEventArgs(Message message)
{
Message = message;
}
}