mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
22 lines
649 B
C#
22 lines
649 B
C#
using Serein.NodeFlow.Model;
|
|
using Serein.NodeFlow.Model.Nodes;
|
|
using Serein.Workbench.Node.View;
|
|
|
|
namespace Serein.Workbench.Node.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// ActionNodeControlViewModel 类用于表示单动作节点的控制视图模型。
|
|
/// </summary>
|
|
public class ActionNodeControlViewModel : NodeControlViewModelBase
|
|
{
|
|
/// <summary>
|
|
/// 构造一个新的 ActionNodeControlViewModel 实例。
|
|
/// </summary>
|
|
/// <param name="node"></param>
|
|
public ActionNodeControlViewModel(SingleActionNode node) : base(node)
|
|
{
|
|
// this.NodelModel = node;
|
|
}
|
|
}
|
|
}
|