namespace AsterNET.Manager.Action
{
public class AtxferAction : ManagerAction
{
///
/// Attended transfer.
///
public AtxferAction()
{
}
///
/// Attended transfer.
///
/// Transferer's channel.
/// Extension to transfer to.
/// Context to transfer to.
/// Priority to transfer to.
public AtxferAction(string channel, string exten, string context, string priority)
{
Channel = channel;
Exten = exten;
Context = context;
Priority = priority;
}
public override string Action
{
get { return "Atxfer"; }
}
///
/// Transferer's channel.
///
public string Channel { get; set; }
///
/// Extension to transfer to.
///
public string Exten { get; set; }
///
/// Context to transfer to.
///
public string Context { get; set; }
///
/// Priority to transfer to.
///
public string Priority { get; set; }
}
}