26 lines
595 B
C#
26 lines
595 B
C#
namespace zero.Backoffice.UIComposition;
|
|
|
|
/// <summary>
|
|
/// Website and backoffice settings
|
|
/// </summary>
|
|
public class SettingsSection : IInternalBackofficeSection
|
|
{
|
|
/// <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 int Sort => 1000;
|
|
|
|
/// <inheritdoc />
|
|
public IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
|
|
}
|