using System.Collections.Generic; using unjo.Core; using unjo.Core.Entities.Sections; namespace unjo.Web.Sections { /// /// Global list entities /// public class ListsSection : ISection { /// public string Alias => Constants.Sections.Lists; /// public string Name => "@ui_sections_lists"; /// public string Icon => "fth-layers"; /// public IList Children => null; } }