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 { get; set; } } public class children { public string text { get; set; } public int id { get; set; } public int type { get; set; } } }