asternet/Asterisk.2013/Asterisk.NET/Manager/Action/QueueRuleAction.cs

21 lines
405 B
C#
Raw Normal View History

2015-01-03 15:37:29 +00:00
namespace AsterNET.Manager.Action
2014-01-08 14:16:39 +00:00
{
public class QueueRuleAction : ManagerAction
{
public QueueRuleAction()
{
}
public QueueRuleAction(string rule)
{
2015-01-03 15:37:29 +00:00
Rule = rule;
2014-01-08 14:16:39 +00:00
}
public override string Action
{
get { return "QueueRule"; }
}
2015-01-03 15:37:29 +00:00
public string Rule { get; set; }
2014-01-08 14:16:39 +00:00
}
2015-01-03 15:37:29 +00:00
}