Files

12 lines
233 B
C#
Raw Permalink Normal View History

2025-07-31 20:12:24 +08:00
using System.Collections.Generic;
2026-02-17 22:17:23 +08:00
namespace MelskinTest.DataModel
2025-07-31 20:12:24 +08:00
{
public class TreeItemData
{
public string Content { get; set; } = "123";
public List<TreeItemData> Children { get; set; } = [];
}
}