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>
|
2021-05-04 17:23:52 +02:00
|
|
|
public class SpacesSection : IInternalSection
|
2020-03-22 14:18:34 +01:00
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
2020-04-30 11:53:59 +02:00
|
|
|
public string Alias => Constants.Sections.Spaces;
|
2020-03-22 14:18:34 +01:00
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-04-30 11:53:59 +02:00
|
|
|
public string Name => "@sections.item.spaces";
|
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
|
|
|
}
|
|
|
|
|
}
|