You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
382 B
14 lines
382 B
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<AjaxSelectListItem> Children { get; set; } = new List<AjaxSelectListItem>();
|
|
}
|
|
}
|