using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Web.Controls.Mvc { public class ListControlOptions : BaseControlOptions { public ListControlOptions() { ItemList = new List(); SelectedValues = new List(); ColumnCount = 1; } public int ColumnCount { get; set; } public int? Width { get; set; } public List SelectedValues { get; set; } public List ItemList { get; set; } public string ItemSourceUrl { get; set; } public string SelectedValueUrl { get; set; } public string TextField { get; set; } public string ValueField { get; set; } public string OnClick { get; set; } public string OnLoadSuccess { get; set; } } }