33 lines
1,008 B
C#
33 lines
1,008 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// Abstract base class for several call parking related events.
|
|
/// </summary>
|
|
public abstract class AbstractParkedCallEvent : ManagerEvent
|
|
{
|
|
public AbstractParkedCallEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
|
|
/// <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; }
|
|
}
|
|
} |