Files
Umbraco-CMS/src/Umbraco.Core/Sections/FormsSection.cs
2020-02-24 08:21:53 +01:00

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