* Clean up datatype configurations for V14 * Fix merge * Remove ParameterEditorCollection + revert accidental changes to core project file
15 lines
336 B
C#
15 lines
336 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Umbraco.Cms.Core.IO;
|
|
|
|
namespace Umbraco.Cms.Core.PropertyEditors;
|
|
|
|
internal class ContentPickerConfigurationEditor : ConfigurationEditor<ContentPickerConfiguration>
|
|
{
|
|
public ContentPickerConfigurationEditor(IIOHelper ioHelper)
|
|
: base(ioHelper)
|
|
{
|
|
}
|
|
}
|