namespace AsterNET.Manager.Event
{
///
/// A ConnectEvent is triggered after successful login to the asterisk server.
/// It is a pseudo event not directly related to an asterisk generated event.
///
public class ConnectEvent : ConnectionStateEvent
{
public ConnectEvent(ManagerConnection source)
: base(source)
{
}
///
/// Get/Set the version of the protocol.
///
public string ProtocolIdentifier { get; set; }
}
}