Files
mixtape/zero.Backoffice/Sections/PagesSection.cs
T
2021-11-22 14:29:22 +01:00

22 lines
509 B
C#

namespace zero.Backoffice.Sections;
/// <summary>
/// Manage the page tree in this section
/// </summary>
public class PagesSection : IInternalSection
{
/// <inheritdoc />
public string Alias => Constants.Sections.Pages;
/// <inheritdoc />
public string Name => "@sections.item.pages";
/// <inheritdoc />
public string Icon => "fth-folder";
/// <inheritdoc />
public string Color => "#0cb0f5";
/// <inheritdoc />
public IList<IChildSection> Children => new List<IChildSection>();
}