using System.Collections.Generic;
using zero.Core;
using zero.Core.Entities;
namespace zero.Web.Sections
{
///
/// Manage the page tree in this section
///
public class PagesSection : ISection, IZeroInternal
{
///
public string Alias => Constants.Sections.Pages;
///
public string Name => "@sections.item.pages";
///
public string Icon => "fth-folder";
///
public string Color => "#0cb0f5";
///
public IList Children => new List();
}
}