Files
mixtape/zero.Backoffice/UIComposition/Sections/SpacesSection.cs
T

25 lines
579 B
C#
Raw Normal View History

namespace zero.Backoffice.UIComposition;
2021-11-22 14:29:22 +01:00
/// <summary>
/// Global list entities
/// </summary>
2021-11-23 11:35:01 +01:00
public class SpacesSection : IInternalBackofficeSection
2021-11-22 14:29:22 +01:00
{
/// <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";
2021-12-29 01:25:35 +01:00
/// <inheritdoc />
public int Sort => 200;
2021-11-22 14:29:22 +01:00
/// <inheritdoc />
2021-11-23 11:35:01 +01:00
public IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
2021-11-22 14:29:22 +01:00
}