mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
16 lines
419 B
C#
16 lines
419 B
C#
|
|
using Serein.DynamicFlow.NodeModel;
|
|||
|
|
using Serein.WorkBench.Node.View;
|
|||
|
|
|
|||
|
|
namespace Serein.WorkBench.Node.ViewModel
|
|||
|
|
{
|
|||
|
|
public class FlipflopNodeControlViewModel : NodeControlViewModel
|
|||
|
|
{
|
|||
|
|
private readonly SingleFlipflopNode node;
|
|||
|
|
public FlipflopNodeControlViewModel(SingleFlipflopNode node)
|
|||
|
|
{
|
|||
|
|
this.node = node;
|
|||
|
|
MethodDetails = node.MethodDetails;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|