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