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

15 lines
211 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,
SFC,
2021-07-23 09:42:22 +08:00
}
}