ivr流程编辑器

IVRRecvfax.cs 468B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using HySoft.IVRFlowEditor.Model;
  6. namespace HySoft.IVRFlowEditor.IVRControlUtility
  7. {
  8. /// <summary>
  9. /// 、传真接收节点
  10. /// </summary>
  11. [IVRAttribute("CELL_RECVFAX", Model.IVRSerializerType.节点, 2)]
  12. public class IVRRecvfax:IVRSendfax
  13. {
  14. public IVRRecvfax(string name)
  15. : base(name)
  16. {
  17. }
  18. }
  19. }