namespace AsterNET.Manager.Event { /// /// An AgentConnectEvent is triggered when a caller is connected to an agent. /// public class AgentConnectEvent : AbstractAgentEvent { public AgentConnectEvent(ManagerConnection source) : base(source) { } /// /// Get/Set the amount of time the caller was on hold. /// public long HoldTime { get; set; } /// /// Get/Set bridged channel. /// public string BridgedChannel { get; set; } /// /// Get/Set the amount of time the caller was on ring. /// public long RingTime { get; set; } } }