namespace zero.Backoffice.UIComposition; /// /// Manage the page tree in this section /// public class PagesSection : IInternalBackofficeSection { /// public string Alias => Constants.Sections.Pages; /// public string Name => "@sections.item.pages"; /// public string Icon => "fth-folder"; /// public string Color => "#0cb0f5"; /// public int Sort => 100; /// public IList Children => new List(); }