Files
mixtape/zero.Web/Sections/ListsSection.cs
T

28 lines
591 B
C#
Raw Normal View History

2020-03-22 14:18:34 +01:00
using System.Collections.Generic;
2020-03-24 23:09:29 +01:00
using zero.Core;
using zero.Core.Entities;
2020-03-22 14:18:34 +01:00
2020-03-24 23:09:29 +01:00
namespace zero.Web.Sections
2020-03-22 14:18:34 +01:00
{
/// <summary>
/// Global list entities
/// </summary>
public class ListsSection : ISection
{
/// <inheritdoc />
public string Alias => Constants.Sections.Lists;
/// <inheritdoc />
2020-04-06 13:24:46 +02:00
public string Name => "@sections.item.lists";
2020-03-22 14:18:34 +01:00
/// <inheritdoc />
public string Icon => "fth-layers";
2020-04-05 00:39:12 +02:00
/// <inheritdoc />
public string Color => "#f9c202";
2020-03-22 14:18:34 +01:00
/// <inheritdoc />
2020-04-05 01:19:42 +02:00
public IList<IChildSection> Children => new List<IChildSection>();
2020-03-22 14:18:34 +01:00
}
}