2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Core.Sections
|
2019-01-17 17:04:53 +11:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Defines the back office settings section
|
|
|
|
|
|
/// </summary>
|
2019-02-18 11:22:25 +01:00
|
|
|
|
public class SettingsSection : ISection
|
2019-01-17 17:04:53 +11:00
|
|
|
|
{
|
2019-01-18 10:02:47 +01:00
|
|
|
|
/// <inheritdoc />
|
2019-01-17 17:04:53 +11:00
|
|
|
|
public string Alias => Constants.Applications.Settings;
|
2019-01-18 10:02:47 +01:00
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2019-01-17 17:04:53 +11:00
|
|
|
|
public string Name => "Settings";
|
|
|
|
|
|
}
|
2019-01-18 10:02:47 +01:00
|
|
|
|
}
|