using System.Collections.Generic;
using zero.Core;
using zero.Core.Entities;
namespace zero.Web.Sections
{
///
/// Global list entities
///
public class ListsSection : ISection
{
///
public string Alias => Constants.Sections.Lists;
///
public string Name => "@sections.item.lists";
///
public string Icon => "fth-layers";
///
public string Color => "#f9c202";
///
public IList Children => new List();
}
}