mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
28 lines
625 B
C#
28 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
|
|
namespace AIStudio.Wpf.SFC.ViewModels
|
|
{
|
|
public class SFCNodeNode : SFCNode
|
|
{
|
|
public SFCNodeNode() : base(SFCNodeKinds.Node)
|
|
{
|
|
ExecuteAddTopInput(null);
|
|
ExecuteAddBottomOutput(null);
|
|
ExecuteAddActionOutput(null);
|
|
}
|
|
|
|
public SFCNodeNode(IDiagramViewModel root, DesignerItemBase designer) : base(root, designer)
|
|
{
|
|
}
|
|
|
|
public SFCNodeNode(IDiagramViewModel root, string json) : base(root, json)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|