ivr流程编辑器

IVRDefaultVar.cs 396B

1234567891011121314151617
  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. [IVRAttribute("IVRDefaultVar", Model.IVRSerializerType.节点,1)]
  9. public class IVRDefaultVar
  10. {
  11. [IVRAttribute("Var", Model.IVRSerializerType.元素, 2)]
  12. public string Var
  13. { get;set; }
  14. }
  15. }