using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Web.Controls.Mvc { public class CombotreeOptions : BaseControlOptions { public object SelectedValue { get; set; } public bool Required { get; set; } public string DataSourceUrl { get; set; } public string Style { get; set; } public string DataCondition { get; set; } } }