28 lines
625 B
C#
28 lines
625 B
C#
using System.Collections.Generic;
|
|
using zero.Core;
|
|
using zero.Core.Entities;
|
|
|
|
namespace zero.Web.Sections
|
|
{
|
|
/// <summary>
|
|
/// Website and backoffice settings
|
|
/// </summary>
|
|
public class SettingsSection : ISection, IBuiltInSection
|
|
{
|
|
/// <inheritdoc />
|
|
public string Alias => Constants.Sections.Settings;
|
|
|
|
/// <inheritdoc />
|
|
public string Name => "@sections.item.settings";
|
|
|
|
/// <inheritdoc />
|
|
public string Icon => "fth-settings";
|
|
|
|
/// <inheritdoc />
|
|
public string Color => null;
|
|
|
|
/// <inheritdoc />
|
|
public IList<IChildSection> Children => new List<IChildSection>();
|
|
}
|
|
}
|