This commit is contained in:
kwai
2023-06-28 12:06:58 +08:00
parent a4ea9f334e
commit 1f20aad2c7
10 changed files with 86 additions and 68 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IAttachTo
{
bool BeAttachTo
{
get;set;
}
bool DisableAttachTo
{
get; set;
}
}
}