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