| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.IVRControlUtility;
- using IVRFlowEditor.IVRControl;
- using HySoft.IVRFlowEditor.Model;
- namespace IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 挂机
- /// </summary>
- [IVRAttribute("CELL_HANGUP", IVRSerializerType.节点,1)]
- public class IVRHangUp:IVRControlBase
- {
- public IVRHangUp(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVRHangUp(this);
- }
- [IVRAttribute("Next",IVRSerializerType.元素,2, IsPosPoint = true)]
- public IVRControlBase Next
- { get; set; }
- }
- }
|