重新设计流程画布Canvas与节点Node的关联

This commit is contained in:
fengjiayi
2025-03-24 15:44:34 +08:00
parent cf7760ef84
commit b1a9679138
15 changed files with 322 additions and 55 deletions

View File

@@ -313,13 +313,12 @@ namespace Serein.Library.Api
/// </summary>
public class CanvasCreateEventArgs : FlowEventArgs
{
public CanvasCreateEventArgs(
FlowCanvasInfo info)
public CanvasCreateEventArgs(FlowCanvasModel model)
{
Info = info;
Model = model;
}
public FlowCanvasInfo Info { get; }
public FlowCanvasModel Model { get; }
}
/// <summary>
@@ -888,7 +887,7 @@ namespace Serein.Library.Api
/// </summary>
/// <param name="canvasGuid">画布Guid</param>
/// <returns></returns>
Task<bool> RemoteCanvasAsync(string canvasGuid);
Task<bool> RemoveCanvasAsync(string canvasGuid);
/// <summary>