namespace zero.Backoffice.UIComposition; /// /// The dashboard aggregates data from all sections /// public class DashboardSection : IInternalBackofficeSection { /// public string Alias => Constants.Sections.Dashboard; /// public string Name => "@sections.item.dashboard"; /// public string Icon => "fth-pie-chart"; /// public string Color => null; /// public int Sort => 0; /// public IList Children => new List(); }