mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
15 lines
381 B
C#
15 lines
381 B
C#
using Serein.NodeFlow.Model;
|
|
using Serein.WorkBench.Node.View;
|
|
|
|
namespace Serein.WorkBench.Node.ViewModel
|
|
{
|
|
public class FlipflopNodeControlViewModel : NodeControlViewModelBase
|
|
{
|
|
private readonly SingleFlipflopNode node;
|
|
public FlipflopNodeControlViewModel(SingleFlipflopNode node) : base(node)
|
|
{
|
|
this.node = node;
|
|
}
|
|
}
|
|
}
|