This commit is contained in:
kwai
2023-06-20 13:46:26 +08:00
parent 4870a2fd0e
commit 82500f86a6
7 changed files with 487 additions and 434 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IBlockDiagramViewModel : IDiagramViewModel
{
ICommand AddNextCommand
{
get;
}
ICommand RemoveNextCommand
{
get;
}
ICommand AddChildCommand
{
get;
}
ICommand RemoveChildCommand
{
get;
}
}
}