mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
25 lines
625 B
C#
25 lines
625 B
C#
using Serein.NodeFlow.Model;
|
|
using Serein.Workbench.Node.View;
|
|
|
|
namespace Serein.Workbench.Node.ViewModel
|
|
{
|
|
public class ActionNodeControlViewModel : NodeControlViewModelBase
|
|
{
|
|
//public SingleActionNode NodelModel
|
|
//{
|
|
// get => (SingleActionNode)base.NodeModel; set
|
|
// {
|
|
// if (base.NodeModel == null)
|
|
// {
|
|
// base.NodeModel = value;
|
|
// }
|
|
// }
|
|
//}
|
|
|
|
public ActionNodeControlViewModel(SingleActionNode node):base(node)
|
|
{
|
|
// this.NodelModel = node;
|
|
}
|
|
}
|
|
}
|