CombotreeOptions.cs 429 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Web.Controls.Mvc
  6. {
  7. public class CombotreeOptions : BaseControlOptions
  8. {
  9. public object SelectedValue { get; set; }
  10. public bool Required { get; set; }
  11. public string DataSourceUrl { get; set; }
  12. public string Style { get; set; }
  13. public string DataCondition { get; set; }
  14. }
  15. }