using System.Collections.Generic; using zero.Core; using zero.Core.Entities; namespace zero.Web.Sections { /// /// The dashboard aggregates data from all sections /// public class DashboardSection : IInternalSection { /// public string Alias => Constants.Sections.Dashboard; /// public string Name => "@sections.item.dashboard"; /// public string Icon => "fth-pie-chart"; /// public string Color => null; /// public IList Children => new List(); } }