Files
mixtape/unjo.Web/Sections/DashboardSection.cs
T
2020-03-22 14:18:34 +01:00

25 lines
557 B
C#

using System.Collections.Generic;
using unjo.Core;
using unjo.Core.Entities.Sections;
namespace unjo.Web.Sections
{
/// <summary>
/// The dashboard aggregates data from all sections
/// </summary>
public class DashboardSection : ISection
{
/// <inheritdoc />
public string Alias => Constants.Sections.Dashboard;
/// <inheritdoc />
public string Name => "@ui_sections_dashboard";
/// <inheritdoc />
public string Icon => "fth-pie-chart";
/// <inheritdoc />
public IList<IChildSection> Children => null;
}
}