using System.Collections.Generic; using JetBrains.Annotations; using Volo.Abp; namespace Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.Toolbars; public class Toolbar { public string Name { get; } public List Items { get; } public Toolbar([NotNull] string name) { Name = Check.NotNull(name, nameof(name)); Items = new List(); } }