mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-02 15:50:51 +08:00
23 lines
386 B
C#
23 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIStudio.Wpf.Mind.Models
|
|
{
|
|
public class TreeNode
|
|
{
|
|
public string Text
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public List<TreeNode> Children
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|