Files
mixtape/zero.Backoffice/UIComposition/Sections/DashboardSection.cs
T

22 lines
565 B
C#

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