2019-01-17 17:04:53 +11:00
|
|
|
|
using Umbraco.Core;
|
2019-02-18 11:22:25 +01:00
|
|
|
|
using Umbraco.Core.Models.Sections;
|
2019-01-17 17:04:53 +11:00
|
|
|
|
|
2019-02-18 11:22:25 +01:00
|
|
|
|
namespace Umbraco.Web.Sections
|
2019-01-17 17:04:53 +11:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Defines the back office members section
|
|
|
|
|
|
/// </summary>
|
2019-02-18 11:22:25 +01:00
|
|
|
|
public class MembersSection : 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.Members;
|
2019-01-18 10:02:47 +01:00
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2019-01-17 17:04:53 +11:00
|
|
|
|
public string Name => "Members";
|
|
|
|
|
|
}
|
2019-01-18 10:02:47 +01:00
|
|
|
|
}
|