| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.IVRControl;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 取消排队节点
- /// </summary>
- [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; }
- }
- }
|