Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/ViewModels/BlockViewModel/IBlockDiagramViewModel.cs

33 lines
557 B
C#
Raw Normal View History

2023-06-20 13:46:26 +08:00
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;
}
2023-06-27 22:57:08 +08:00
ICommand InsertChildCommand
2023-06-20 13:46:26 +08:00
{
get;
}
ICommand RemoveChildCommand
{
get;
}
}
}