ivr流程编辑器

IVRHangUp.cs 671B

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