using System;
using AsterNET.Manager.Event;
namespace AsterNET.Manager.Action
{
///
/// The ParkedCallsAction requests a list of all currently parked calls.
/// For each active channel a ParkedCallEvent is generated. After all parked
/// calls have been reported a ParkedCallsCompleteEvent is generated.
///
///
///
public class ParkedCallsAction : ManagerActionEvent
{
/// Get the name of this action, i.e. "ParkedCalls".
public override string Action
{
get { return "ParkedCalls"; }
}
public override Type ActionCompleteEventClass()
{
return typeof (ParkedCallsCompleteEvent);
}
}
}