| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.IVRControl;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 传真发送节点
- /// </summary>
- [IVRAttribute("CELL_SENDFAX", Model.IVRSerializerType.节点,1)]
- public class IVRSendfax : IVRControlBase
- {
- public IVRSendfax(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVRSendfax(this);
-
- }
- [IVRAttribute("Path", Model.IVRSerializerType.元素,2)]
- public string Path
- { get; set; }
- [IVRAttribute("SuccessPos", Model.IVRSerializerType.元素,3, IsPosPoint = true)]
- public IVRControlBase SuccessPos
- { get; set; }
- [IVRAttribute("FailPos", Model.IVRSerializerType.元素,4, IsPosPoint = true)]
- public IVRControlBase FailPos
- { get; set; }
- [IVRAttribute("HangupPos", Model.IVRSerializerType.元素,5, IsPosPoint = true)]
- public IVRControlBase HangupPos
- { get; set; }
-
- }
-
- }
|