Files

15 lines
234 B
C#
Raw Permalink Normal View History

2021-07-23 09:42:22 +08:00
using System;
using System.Collections.Generic;
using System.Text;
2022-10-28 22:45:39 +08:00
namespace AIStudio.Wpf.DiagramDesigner
2021-07-23 09:42:22 +08:00
{
2023-04-24 20:10:17 +08:00
public enum ConnectorValueType
2021-07-23 09:42:22 +08:00
{
Real = 0,
Int = 1,
Bool = 2,
2023-04-19 22:26:04 +08:00
String = 3,
2021-07-23 09:42:22 +08:00
}
}