FlowChart.cs
上传用户:lvyingde
上传日期:2018-04-24
资源大小:610k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading;
- using System.Xml;
- namespace wxwinter.WFDesignerSl
- {
- public class FlowChart
- {
- public List<Element> ElementList = new List<Element>();
- public List<ElementRelation> ElementRelationList = new List<ElementRelation>();
- }
- public class Element
- {
- public string Name
- { set; get; }
- public string 类型
- { set; get; }
- public string 说明
- { set; get; }
-
- public Double X坐标
- { set; get; }
- public Double Y坐标
- { set; get; }
- public object 数据
- { set; get; }
- }
- public class ElementRelation
- {
- public string Name
- { set; get; }
- public string 起点
- { set; get; }
- public string 目标
- { set; get; }
- public string 路由
- { set; get; }
- public string 说明
- { set; get; }
- }
- }