using WeEngine.Enum; using WeEngine.Packages; namespace WeEngine.Module.Runner { /// /// 运行模块 /// public interface IPackageRunnerModule { /// /// 运行态方案包 /// PackageInfo PackageInfo { get; set; } /// /// 运行方案包 /// /// /// /// bool Run(NodeBase node, OperationType operationType); /// /// 运行方案包 /// /// /// /// bool Run(string path, OperationType operationType); } }