namespace AsterNET.Manager.Action
{
///
/// The ZapTransferAction transfers a zap channel.
///
public class ZapTransferAction : ManagerAction
{
///
/// Get the name of this action, i.e. "ZapTransfer".
///
public override string Action
{
get { return "ZapTransfer"; }
}
///
/// Get/Set the number of the zap channel to transfer.
/// This property is mandatory.
///
public int ZapChannel { get; set; }
}
}