mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
28 lines
663 B
C#
28 lines
663 B
C#
using Serein.NodeFlow.Model;
|
|
using Serein.NodeFlow.Model.Nodes;
|
|
using Serein.Workbench.Node.View;
|
|
|
|
namespace Serein.Workbench.Node.ViewModel
|
|
{
|
|
public class ExpOpNodeControlViewModel: NodeControlViewModelBase
|
|
{
|
|
public new SingleExpOpNode NodeModel { get; }
|
|
|
|
//public string Expression
|
|
//{
|
|
// get => node.Expression;
|
|
// set
|
|
// {
|
|
// node.Expression = value;
|
|
// OnPropertyChanged();
|
|
// }
|
|
//}
|
|
|
|
|
|
public ExpOpNodeControlViewModel(SingleExpOpNode nodeModel) : base(nodeModel)
|
|
{
|
|
this.NodeModel = nodeModel;
|
|
}
|
|
}
|
|
}
|