mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
16 lines
429 B
C#
16 lines
429 B
C#
using Serein.NodeFlow.Model;
|
|
using Serein.NodeFlow.Model.Nodes;
|
|
using Serein.Workbench.Node.View;
|
|
|
|
namespace Serein.Workbench.Node.ViewModel
|
|
{
|
|
public class FlipflopNodeControlViewModel : NodeControlViewModelBase
|
|
{
|
|
public new SingleFlipflopNode NodelModel { get;}
|
|
public FlipflopNodeControlViewModel(SingleFlipflopNode node) : base(node)
|
|
{
|
|
this.NodelModel = node;
|
|
}
|
|
}
|
|
}
|