tijian_tieying/web/dccdc.Models/Tree.cs

16 lines
314 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dccdc.Models
{
public class Tree<T>
{
public string label { get; set; }
public string value { get; set; }
public List<T> children { get; set; }
}
}