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

33 lines
554 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;
}
ICommand AddChildCommand
{
get;
}
ICommand RemoveChildCommand
{
get;
}
}
}