Files
serein-flow/WorkBench/Node/ViewModel/FlipflopNodeControlViewModel.cs

15 lines
394 B
C#
Raw Normal View History

2024-08-06 16:09:46 +08:00
using Serein.NodeFlow.Model;
using Serein.Workbench.Node.View;
2024-08-05 10:11:58 +08:00
namespace Serein.Workbench.Node.ViewModel
2024-08-05 10:11:58 +08:00
{
public class FlipflopNodeControlViewModel : NodeControlViewModelBase
2024-08-05 10:11:58 +08:00
{
public new SingleFlipflopNode NodelModel { get;}
public FlipflopNodeControlViewModel(SingleFlipflopNode node) : base(node)
2024-08-05 10:11:58 +08:00
{
this.NodelModel = node;
2024-08-05 10:11:58 +08:00
}
}
}