15 lines
331 B
C#
15 lines
331 B
C#
using Umbraco.Core;
|
|
using Umbraco.Core.Models.Sections;
|
|
|
|
namespace Umbraco.Web.Sections
|
|
{
|
|
/// <summary>
|
|
/// Defines the back office media section
|
|
/// </summary>
|
|
public class FormsSection : ISection
|
|
{
|
|
public string Alias => Constants.Applications.Forms;
|
|
public string Name => "Forms";
|
|
}
|
|
}
|