11 lines
295 B
C#
11 lines
295 B
C#
using Umbraco.Core.PropertyEditors;
|
|
|
|
namespace Umbraco.Web.PropertyEditors
|
|
{
|
|
/// <summary>
|
|
/// Represents the configuration editor for the rich text value editor.
|
|
/// </summary>
|
|
internal class RichTextConfigurationEditor : ConfigurationEditor<RichTextConfiguration>
|
|
{ }
|
|
}
|