Files

14 lines
224 B
C#
Raw Permalink Normal View History

2023-01-12 23:02:53 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace AIStudio.Wpf.DiagramDesigner
{
public enum RouterMode
{
2023-01-14 21:52:05 +08:00
RouterNormal,
2023-02-27 20:18:58 +08:00
RouterOrthogonal,
RouterFishBone
2023-01-12 23:02:53 +08:00
}
}