mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
28 lines
633 B
C#
28 lines
633 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 parent, DesignerItemBase designer) : base(parent, designer)
|
|
{
|
|
}
|
|
|
|
public SFCNodeNode(IDiagramViewModel parent, string json) : base(parent, json)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|