AccordionTreeOptions.cs 535 B

123456789101112131415161718
  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 AccordionTreeOptions : BaseControlOptions
  8. {
  9. public string OnClick { get; set; }
  10. //public string IconCls { get; set; }
  11. public string DateItemCss { get; set; }
  12. public string DataOptions { get; set; }
  13. public string AccordionItemOptions { set;get; }
  14. public bool? IsNormalTree { get; set; }
  15. public bool? IsCheckTree { get; set; }
  16. }
  17. }