Files
mixtape/zero.Web/Sections/PagesSection.cs
T
2021-05-04 17:23:52 +02:00

28 lines
615 B
C#

using System.Collections.Generic;
using zero.Core;
using zero.Core.Entities;
namespace zero.Web.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>();
}
}