Files
mixtape/zero.Backoffice/UIComposition/Sections/PagesSection.cs
T
2021-12-29 01:25:35 +01:00

25 lines
592 B
C#

namespace zero.Backoffice.UIComposition;
/// <summary>
/// Manage the page tree in this section
/// </summary>
public class PagesSection : IInternalBackofficeSection
{
/// <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 int Sort => 100;
/// <inheritdoc />
public IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
}