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

28 lines
608 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>
/// Website and backoffice settings
/// </summary>
public class SettingsSection : ISection
{
/// <inheritdoc />
public string Alias => Constants.Sections.Settings;
/// <inheritdoc />
2020-04-06 13:24:46 +02:00
public string Name => "@sections.item.settings";
2020-03-22 14:18:34 +01:00
/// <inheritdoc />
public string Icon => "fth-settings";
2020-04-05 00:39:12 +02:00
/// <inheritdoc />
public string Color => null;
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
}
}