Files
mixtape/zero.Backoffice/UIComposition/Sections/SpacesSection.cs
T
2021-12-29 01:25:35 +01:00

25 lines
579 B
C#

namespace zero.Backoffice.UIComposition;
/// <summary>
/// Global list entities
/// </summary>
public class SpacesSection : IInternalBackofficeSection
{
/// <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 int Sort => 200;
/// <inheritdoc />
public IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
}