Files
Umbraco-CMS/src/Umbraco.Web/Sections/MembersSection.cs
2019-02-18 11:22:25 +01:00

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";
}
}