Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/Models/Values/IParameter.cs

19 lines
303 B
C#
Raw Normal View History

2023-07-22 19:11:08 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IParameter
{
object Value
{
get; set;
}
void Add(object value);
}
}