- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class ButtonOptions:BaseControlOptions
- {
- public ButtonIcon? Icon { get; set; }
- public string Text { get; set; }
- public bool? Enable { get; set; }
- public bool? IsPlain { get; set; }
- public string OnClick { get; set; }
- }
- }
|