Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/ViewModels/BlockViewModel/IBlockDiagramViewModel.cs
艾竹 d2e00c6149 block
2023-06-27 22:57:08 +08:00

33 lines
557 B
C#

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 InsertChildCommand
{
get;
}
ICommand RemoveChildCommand
{
get;
}
}
}