2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Abstract base class for several call parking related events.
|
|
|
|
/// </summary>
|
|
|
|
public abstract class AbstractParkedCallEvent : ManagerEvent
|
|
|
|
{
|
|
|
|
public AbstractParkedCallEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the extension the channel is or was parked at.
|
|
|
|
/// </summary>
|
|
|
|
public string Exten { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the Caller*ID number of the parked channel.
|
|
|
|
/// </summary>
|
|
|
|
public string CallerId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the Caller*ID number of the parked channel.
|
|
|
|
/// </summary>
|
|
|
|
public string CallerIdNum { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the Caller*ID name of the parked channel.
|
|
|
|
/// </summary>
|
|
|
|
public string CallerIdName { get; set; }
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
}
|