Files
Umbraco-CMS/src/Umbraco.Web/Sections/MembersSection.cs

18 lines
394 B
C#
Raw Normal View History

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