18 lines
394 B
C#
18 lines
394 B
C#
using Umbraco.Core;
|
|
using Umbraco.Core.Models.Sections;
|
|
|
|
namespace Umbraco.Web.Sections
|
|
{
|
|
/// <summary>
|
|
/// Defines the back office members section
|
|
/// </summary>
|
|
public class MembersSection : ISection
|
|
{
|
|
/// <inheritdoc />
|
|
public string Alias => Constants.Applications.Members;
|
|
|
|
/// <inheritdoc />
|
|
public string Name => "Members";
|
|
}
|
|
}
|