using System;
using AsterNET.Manager.Event;
namespace AsterNET.Manager.Action
{
///
/// The ZapShowChannelsAction requests the state of all zap channels.
/// For each zap channel a ZapShowChannelsEvent is generated. After all zap
/// channels have been listed a ZapShowChannelsCompleteEvent is generated.
///
///
///
public class ZapShowChannelsAction : ManagerActionEvent
{
///
/// Get the name of this action, i.e. "ZapShowChannels".
///
public override string Action
{
get { return "ZapShowChannels"; }
}
public override Type ActionCompleteEventClass()
{
return typeof (ZapShowChannelsCompleteEvent);
}
}
}