Files
aistudio-wpf-diagram/Util.DiagramDesigner/Enums/DiagramType.cs

14 lines
197 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Util.DiagramDesigner
{
public enum DiagramType
{
Normal,
FlowChart,
Logical
}
}