namespace Asterisk.NET.Manager.Event
{
///
/// A UnparkedCallEvent is triggered when a channel that has been parked is resumed.
/// It is implemented in res/res_features.c
/// Available since Asterisk 1.2
///
public class UnparkedCallEvent : AbstractParkedCallEvent
{
private string from;
///
/// Get/Set the name of the channel that parked the call.
///
public string From
{
get { return this.from; }
set { this.from = value; }
}
public UnparkedCallEvent(ManagerConnection source)
: base(source)
{
}
}
}