2021-07-23 09:42:22 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2022-10-28 22:45:39 +08:00
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
2021-07-23 09:42:22 +08:00
|
|
|
|
{
|
2023-01-26 18:27:17 +08:00
|
|
|
|
public interface IShapeViewModel
|
2021-07-23 09:42:22 +08:00
|
|
|
|
{
|
2023-04-29 15:29:22 +08:00
|
|
|
|
ISharpPath SourceMarker
|
2023-01-26 18:27:17 +08:00
|
|
|
|
{
|
|
|
|
|
|
get; set;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-04-29 15:29:22 +08:00
|
|
|
|
ISharpPath SinkMarker
|
2023-01-26 18:27:17 +08:00
|
|
|
|
{
|
|
|
|
|
|
get; set;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-23 09:42:22 +08:00
|
|
|
|
event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
|
|
}
|
2023-01-26 18:27:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
2021-07-23 09:42:22 +08:00
|
|
|
|
}
|