//
// PacketEventArgs.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;
namespace NosSmooth.LocalBinding.EventArgs;
///
/// Event arguments for packet events.
///
public class PacketEventArgs : CancelEventArgs
{
///
/// Gets the packet string.
///
public string Packet { get; }
///
/// Initializes a new instance of the class.
///
/// The packet.
public PacketEventArgs(string packet)
{
Packet = packet;
}
}