asternet/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs

15 lines
428 B
C#
Raw Normal View History

namespace Asterisk.NET.Manager.Event
{
/// <summary>
/// A ParkedCallGiveUpEvent is triggered when a channel that has been parked is hung up.<br/>
/// It is implemented in <code>res/res_features.c</code><br/>
/// Available since Asterisk 1.2
/// </summary>
public class ParkedCallGiveUpEvent : AbstractParkedCallEvent
{
public ParkedCallGiveUpEvent(ManagerConnection source)
: base(source)
{
}
}
}