Files
aistudio-wpf-diagram/AIStudio.Wpf.Mind/NodeLevel.cs

15 lines
204 B
C#
Raw Normal View History

2023-02-12 21:30:16 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace AIStudio.Wpf.Mind
{
public enum NodeLevel
{
Level1,
Level2,
2023-02-27 20:18:58 +08:00
Level3,
Level4
2023-02-12 21:30:16 +08:00
}
}