using System.Collections.Generic; namespace Infrastructure.Web.Mvc { public class AjaxSelectListItem { public string Value { get; set; } public string Label { get; set; } public bool Leaf { get; set; } public int Count { get; set; } public List Children { get; set; } = new List(); } }