namespace AsterNET.Manager.Action { public class QueuePenaltyAction : ManagerAction { /// /// Set the penalty for a queue member. /// public QueuePenaltyAction() { } /// /// Set the penalty for a queue member. /// /// /// /// public QueuePenaltyAction(string @interface, string penalty, string queue) { Interface = @interface; Penalty = penalty; Queue = queue; } public override string Action { get { return "QueuePenalty"; } } public string Interface { get; set; } public string Penalty { get; set; } public string Queue { get; set; } } }