23 lines
481 B
C#
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; }
|
|
}
|
|
} |