using Umbraco.Cms.Core.IO;
namespace Umbraco.Cms.Core.PropertyEditors;
///
/// Represents the configuration editor for the file upload value editor.
///
public class FileUploadConfigurationEditor : ConfigurationEditor
{
public FileUploadConfigurationEditor(IIOHelper ioHelper)
: base(ioHelper)
{
}
}