tijian_tieying/web/dccdc/Models/TreeViewModel.cs
2025-02-20 12:14:39 +08:00

23 lines
481 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace dccdc.Models
{
public class TreeViewModel
{
public string text { get; set; }
public int id { get; set; }
public int type { get; set; }
public List<children> children { get; set; }
}
public class children
{
public string text { get; set; }
public int id { get; set; }
public int type { get; set; }
}
}