2021-11-23 11:56:42 +01:00
|
|
|
namespace zero.Backoffice.UIComposition;
|
2021-11-22 14:29:22 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Website and backoffice settings
|
|
|
|
|
/// </summary>
|
2021-11-23 11:35:01 +01:00
|
|
|
public class SettingsSection : IInternalBackofficeSection
|
2021-11-22 14:29:22 +01:00
|
|
|
{
|
|
|
|
|
/// <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;
|
|
|
|
|
|
2021-12-29 01:25:35 +01:00
|
|
|
/// <inheritdoc />
|
|
|
|
|
public int Sort => 1000;
|
|
|
|
|
|
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
|
|
|
}
|