using Serein.Library.Api;
using Serein.Library.Attributes;
using Serein.Library.Entity;
using Serein.Library.Utils;
using Serein.NodeFlow;
using Serein.NodeFlow.Tool;
using Serein.Workbench.Node.View;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Serein.Workbench
{
///
/// 工作台数据视图
///
///
public class MainWindowViewModel
{
private readonly MainWindow window ;
///
/// 运行环境
///
public IFlowEnvironment FlowEnvironment { get; set; }
///
/// 工作台数据视图
///
///
public MainWindowViewModel(MainWindow window)
{
FlowEnvironment = new FlowEnvironment();
this.window = window;
}
}
}