Files
mixtape/zero.Web/Sections/ListsSection.cs
T
2020-04-06 13:24:46 +02:00

28 lines
591 B
C#

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