Files
mixtape/zero.Web/Sections/SpacesSection.cs
T
2021-05-04 17:23:52 +02:00

28 lines
602 B
C#

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