Files
mixtape/zero.Backoffice/UIComposition/Sections/PagesSection.cs
T

22 lines
544 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 IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
}