// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.IO;
namespace Umbraco.Cms.Core.PropertyEditors;
///
/// Represents the configuration editor for the rich text value editor.
///
public class RichTextConfigurationEditor : ConfigurationEditor
{
public RichTextConfigurationEditor(IIOHelper ioHelper)
: base(ioHelper)
{
}
}