namespace AsterNET.Manager.Event
{
///
/// An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin.
/// It is implemented in channels/chan_agent.c
///
///
public class AgentLoginEvent : ManagerEvent
{
public AgentLoginEvent(ManagerConnection source)
: base(source)
{
}
///
/// Get/Set the name of the agent that logged in.
///
public string Agent { get; set; }
public string LoginChan { get; set; }
}
}