| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 、传真接收节点
- /// </summary>
- [IVRAttribute("CELL_RECVFAX", Model.IVRSerializerType.节点, 2)]
- public class IVRRecvfax:IVRSendfax
- {
- public IVRRecvfax(string name)
- : base(name)
- {
-
- }
-
- }
- }
|