using System.Collections.Generic; using JetBrains.Annotations; namespace Volo.Abp.AspNetCore.Components.Web.Theming.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(); } } }