mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 00:16:36 +08:00
19 lines
303 B
C#
19 lines
303 B
C#
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);
|
|
}
|
|
}
|