mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-15 14:06:47 +08:00
19 lines
413 B
C#
19 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Util.DiagramDesigner;
|
|
|
|
namespace AIStudio.Wpf.SFC.ViewModels
|
|
{
|
|
public class SFCConditionNode : SFCNode
|
|
{
|
|
public SFCConditionNode() : base(SFCNodeKinds.Condition)
|
|
{
|
|
}
|
|
|
|
public SFCConditionNode(IDiagramViewModel parent, DesignerItemBase designer) : base(parent, designer)
|
|
{
|
|
}
|
|
}
|
|
}
|