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