Files
mixtape/zero.Backoffice/UIComposition/Sections/DashboardSection.cs
T
2021-12-29 01:25:35 +01:00

25 lines
611 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 int Sort => 0;
/// <inheritdoc />
public IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
}