mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-04 16:16:34 +08:00
19 lines
397 B
C#
19 lines
397 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using Util.DiagramDesigner;
|
|||
|
|
|
|||
|
|
namespace AIStudio.Wpf.SFC.ViewModels
|
|||
|
|
{
|
|||
|
|
public class SFCCOEndNode : SFCNode
|
|||
|
|
{
|
|||
|
|
public SFCCOEndNode() : base(SFCNodeKinds.COEnd)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public SFCCOEndNode(IDiagramViewModel parent, DesignerItemBase designer) : base(parent, designer)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|