mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-12 04:29:27 +08:00
15 lines
234 B
C#
15 lines
234 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum ConnectorValueType
|
|
{
|
|
Real = 0,
|
|
Int = 1,
|
|
Bool = 2,
|
|
String = 3,
|
|
}
|
|
}
|