ivr流程编辑器

IVRCancelQueue.cs 816B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using HySoft.IVRFlowEditor.IVRControl;
  6. using HySoft.IVRFlowEditor.Model;
  7. namespace HySoft.IVRFlowEditor.IVRControlUtility
  8. {
  9. /// <summary>
  10. /// 取消排队节点
  11. /// </summary>
  12. [IVRAttribute("CELL_CANCELQUEUE", Model.IVRSerializerType.节点,1)]
  13. public class IVRCancelQueue : IVRControlBase
  14. {
  15. public IVRCancelQueue(string name)
  16. {
  17. this.Name = name;
  18. CtlProperty = new CtlIVRCancelQueue(this);
  19. }
  20. [IVRAttribute("Reason", Model.IVRSerializerType.元素,2)]
  21. public string Reason
  22. { get; set; }
  23. [IVRAttribute("Next", Model.IVRSerializerType.元素,3, IsPosPoint = true)]
  24. public IVRControlBase Next
  25. { get; set; }
  26. }
  27. }