using System; using System.Collections.Generic; using System.Linq; using System.Text; using HySoft.IVRFlowEditor.Model; namespace HySoft.IVRFlowEditor.IVRControlUtility { public class IVRFlowInfo { public IVRFlowInfo() { IVRFlowNode = new List(); IVRFlowVar = new List(); } public string FlowID { get; set; } public string FlowName { get; set; } public List IVRFlowNode { get; set; } public List IVRFlowVar { get; set; } } public class IVRCanvas { public IVRCanvas() { IVRFlows = new Dictionary(); } public Dictionary IVRFlows { get; set; } } }