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