ButtonOptions.cs 406 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 ButtonOptions:BaseControlOptions
  8. {
  9. public ButtonIcon? Icon { get; set; }
  10. public string Text { get; set; }
  11. public bool? Enable { get; set; }
  12. public bool? IsPlain { get; set; }
  13. public string OnClick { get; set; }
  14. }
  15. }