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