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

10 lines
298 B
C#

using Umbraco.Core;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.TextboxMultipleAlias, "Textarea", "textarea", IsParameterEditor = true)]
public class TextAreaPropertyEditor : PropertyEditor
{
}
}