Files
Umbraco-CMS/src/Umbraco.Core/Sections/SettingsSection.cs

15 lines
346 B
C#
Raw Normal View History

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