Files
mixtape/zero.Web/Sections/PagesSection.cs
T
2020-03-24 23:09:29 +01:00

25 lines
522 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 : ISection
{
/// <inheritdoc />
public string Alias => Constants.Sections.Pages;
/// <inheritdoc />
public string Name => "@ui_sections_pages";
/// <inheritdoc />
public string Icon => "fth-folder";
/// <inheritdoc />
public IList<IChildSection> Children => null;
}
}