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