12 lines
233 B
C#
12 lines
233 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MelskinTest.DataModel
|
|
{
|
|
public class TreeItemData
|
|
{
|
|
public string Content { get; set; } = "123";
|
|
|
|
public List<TreeItemData> Children { get; set; } = [];
|
|
}
|
|
}
|