123456789101112131415 |
- namespace JiaZhiQuan.Common.Utils {
- public class ListToTreeUtils {
- public class BaseNote<T> where T : BaseNote<T> {
- private string path;
- private NoteTypeEnum noteType = NoteTypeEnum.DEFAULT;
- }
- public enum NoteTypeEnum {
- ROOT, LEAF, ERROR, HAS_CHILD, DEFAULT
- }
- }
- }
|