25 lines
592 B
C#
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>();
|
|
} |