Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/TextAreaConfigurationEditor.cs

11 lines
292 B
C#

using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the configuration editor for the textarea value editor.
/// </summary>
public class TextAreaConfigurationEditor : ConfigurationEditor<TextAreaConfiguration>
{ }
}