//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Network.Analyzer;
///
/// The event args for the .
///
///
public class ClientConnectedEventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The connection.
public ClientConnectedEventArgs(LiveConnection connection)
{
this.Connection = connection;
}
///
/// Gets the connection.
///
///
/// The connection.
///
public LiveConnection Connection { get; }
}