using System; using System.Collections.Generic; using System.Linq; using System.Text; using HySoft.IVRFlowEditor.IVRControl; using HySoft.IVRFlowEditor.Model; namespace HySoft.IVRFlowEditor.IVRControlUtility { /// /// 取消排队节点 /// [IVRAttribute("CELL_CANCELQUEUE", Model.IVRSerializerType.节点,1)] public class IVRCancelQueue : IVRControlBase { public IVRCancelQueue(string name) { this.Name = name; CtlProperty = new CtlIVRCancelQueue(this); } [IVRAttribute("Reason", Model.IVRSerializerType.元素,2)] public string Reason { get; set; } [IVRAttribute("Next", Model.IVRSerializerType.元素,3, IsPosPoint = true)] public IVRControlBase Next { get; set; } } }