This commit is contained in:
艾竹
2023-07-23 12:35:18 +08:00
parent b6e095293c
commit e34f7fd5a3
5 changed files with 80 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IGroup
{
string Text
{
get;
}
}
}