mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
30 lines
653 B
C#
30 lines
653 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
using AIStudio.Wpf.Flowchart.ViewModels;
|
|
|
|
namespace AIStudio.Wpf.Flowchart.Models
|
|
{
|
|
public class FlowchartModel
|
|
{
|
|
private List<FlowNode> _nodes = new List<FlowNode>();
|
|
public List<FlowNode> Nodes
|
|
{
|
|
get
|
|
{
|
|
return _nodes;
|
|
}
|
|
}
|
|
|
|
private List<ConnectorViewModel> _links = new List<ConnectorViewModel>();
|
|
public List<ConnectorViewModel> Links
|
|
{
|
|
get
|
|
{
|
|
return _links;
|
|
}
|
|
}
|
|
}
|
|
}
|