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

@@ -1,18 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIStudio.Wpf.DiagramDesigner
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IParameter
{
ISelectable Item
{
get; set;
}
string Text
{
get; set;
}
object Value
{
get; set;
}
bool IsPublic
{
get; set;
}
void Add(object value);
}
}