namespace AsterNET.Manager.Event { /// /// Abstract base class for several call parking related events. /// public abstract class AbstractParkedCallEvent : ManagerEvent { private string exten; private string callerId; private string callerIdNum; private string callerIdName; /// /// Get/Set the extension the channel is or was parked at. /// public string Exten { get { return this.exten; } set { this.exten = value; } } /// /// Get/Set the Caller*ID number of the parked channel. /// public string CallerId { get { return this.callerId; } set { this.callerId = value; } } /// /// Get/Set the Caller*ID number of the parked channel. /// public string CallerIdNum { get { return this.callerIdNum; } set { this.callerIdNum = value; } } /// /// Get/Set the Caller*ID name of the parked channel. /// public string CallerIdName { get { return this.callerIdName; } set { this.callerIdName = value; } } public AbstractParkedCallEvent(ManagerConnection source) : base(source) { } } }