mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-05 01:00:50 +08:00
26 lines
660 B
C#
26 lines
660 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
|
|
namespace AIStudio.Wpf.SFC.ViewModels
|
|
{
|
|
public class SFCStartNode : SFCNode
|
|
{
|
|
public SFCStartNode() : base(SFCNodeKinds.Start)
|
|
{
|
|
ExecuteAddTopInput(null);
|
|
ExecuteAddBottomOutput(null);
|
|
}
|
|
|
|
public SFCStartNode(IDiagramViewModel root, SelectableItemBase designer) : base(root, designer)
|
|
{
|
|
}
|
|
|
|
public SFCStartNode(IDiagramViewModel root, string serializableString, string serializableType) : base(root, serializableString, serializableType)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|