12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class ToolbarOptions
- {
- IList<ToolbarButton> buttonList;
- public IList<ToolbarButton> ButtonList
- {
- get
- {
- if (buttonList == null)
- {
- buttonList = new List<ToolbarButton>();
- }
- return this.buttonList;
- }
- set
- {
- buttonList = value;
- }
- }
- }
- }
|