mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
19 lines
466 B
C#
19 lines
466 B
C#
using System;
|
|
using mRemoteNG.Connection.Protocol;
|
|
|
|
namespace mRemoteNG.Connection
|
|
{
|
|
[Serializable]
|
|
public class ConnectionStartingEvent : EventArgs
|
|
{
|
|
public ConnectionInfo ConnectionInfo { get; }
|
|
public ProtocolBase Protocol { get; }
|
|
|
|
public ConnectionStartingEvent(ConnectionInfo connectionInfo, ProtocolBase protocol)
|
|
{
|
|
ConnectionInfo = connectionInfo;
|
|
Protocol = protocol;
|
|
}
|
|
}
|
|
}
|