Files
mixtape/zero.Web/Sections/PagesSection.cs
T

28 lines
615 B
C#
Raw Normal View History

2020-03-22 14:18:34 +01:00
using System.Collections.Generic;
2020-03-24 23:09:29 +01:00
using zero.Core;
using zero.Core.Entities;
2020-03-22 14:18:34 +01:00
2020-03-24 23:09:29 +01:00
namespace zero.Web.Sections
2020-03-22 14:18:34 +01:00
{
/// <summary>
/// Manage the page tree in this section
/// </summary>
2021-05-04 17:23:52 +02:00
public class PagesSection : IInternalSection
2020-03-22 14:18:34 +01:00
{
/// <inheritdoc />
public string Alias => Constants.Sections.Pages;
/// <inheritdoc />
2020-04-06 13:24:46 +02:00
public string Name => "@sections.item.pages";
2020-03-22 14:18:34 +01:00
/// <inheritdoc />
public string Icon => "fth-folder";
2020-04-05 00:39:12 +02:00
/// <inheritdoc />
public string Color => "#0cb0f5";
2020-03-22 14:18:34 +01:00
/// <inheritdoc />
2020-04-05 01:19:42 +02:00
public IList<IChildSection> Children => new List<IChildSection>();
2020-03-22 14:18:34 +01:00
}
}