ivr流程编辑器

IVRSendfax.cs 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  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_SENDFAX", Model.IVRSerializerType.节点,1)]
  13. public class IVRSendfax : IVRControlBase
  14. {
  15. public IVRSendfax(string name)
  16. {
  17. this.Name = name;
  18. CtlProperty = new CtlIVRSendfax(this);
  19. }
  20. [IVRAttribute("Path", Model.IVRSerializerType.元素,2)]
  21. public string Path
  22. { get; set; }
  23. [IVRAttribute("SuccessPos", Model.IVRSerializerType.元素,3, IsPosPoint = true)]
  24. public IVRControlBase SuccessPos
  25. { get; set; }
  26. [IVRAttribute("FailPos", Model.IVRSerializerType.元素,4, IsPosPoint = true)]
  27. public IVRControlBase FailPos
  28. { get; set; }
  29. [IVRAttribute("HangupPos", Model.IVRSerializerType.元素,5, IsPosPoint = true)]
  30. public IVRControlBase HangupPos
  31. { get; set; }
  32. }
  33. }