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