25 lines
522 B
C#
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;
|
|
}
|
|
}
|