mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-19 16:06:35 +08:00
sfc实现中
This commit is contained in:
18
AIStudio.Wpf.SFC/ViewModels/SFCStartNode.cs
Normal file
18
AIStudio.Wpf.SFC/ViewModels/SFCStartNode.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Util.DiagramDesigner;
|
||||
|
||||
namespace AIStudio.Wpf.SFC.ViewModels
|
||||
{
|
||||
public class SFCStartNode : SFCNode
|
||||
{
|
||||
public SFCStartNode() : base(SFCNodeKinds.Start)
|
||||
{
|
||||
}
|
||||
|
||||
public SFCStartNode(IDiagramViewModel parent, DesignerItemBase designer) : base(parent, designer)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user