mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-07 02:00:50 +08:00
14 lines
210 B
C#
14 lines
210 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum ValueTypePoint
|
|
{
|
|
Real = 0,
|
|
Int = 1,
|
|
Bool = 2,
|
|
}
|
|
}
|