mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-18 07:26:36 +08:00
17 lines
336 B
C#
17 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum ConnectorValueType
|
|
{
|
|
//前面分给值类型,值类型之间可以兼容,直接转换
|
|
Real = 0,
|
|
Int = 1,
|
|
Bool = 2,
|
|
ValueType = 10,
|
|
String = 11,
|
|
}
|
|
}
|