15 lines
460 B
C#
15 lines
460 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// A ParkedCallsCompleteEvent is triggered after all parked calls have been reported in response to a ParkedCallsAction.
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Action.ParkedCallsAction"/>
|
|
/// <seealso cref="Manager.event.ParkedCallEvent"/>
|
|
public class ParkedCallsCompleteEvent : ResponseEvent
|
|
{
|
|
public ParkedCallsCompleteEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
} |