Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/Enums/ValueTypePoint.cs

17 lines
336 B
C#
Raw 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
{
2023-04-25 23:07:25 +08:00
//前面分给值类型,值类型之间可以兼容,直接转换
2021-07-23 09:42:22 +08:00
Real = 0,
Int = 1,
Bool = 2,
2023-04-25 23:07:25 +08:00
ValueType = 10,
String = 11,
2021-07-23 09:42:22 +08:00
}
}