using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Web.Controls.Mvc { public class ListControlItem { public ListControlItem() { IsSelected = false; } public string Text { get; set; } public object Value { get; set; } public bool IsSelected { get; set; } } }