| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- [IVRAttribute("IVRDefaultVar", Model.IVRSerializerType.节点,1)]
- public class IVRDefaultVar
- {
- [IVRAttribute("Var", Model.IVRSerializerType.元素, 2)]
- public string Var
- { get;set; }
- }
- }
|