Files
Umbraco-CMS/src/Umbraco.Infrastructure/PropertyEditors/SliderConfigurationEditor.cs

16 lines
411 B
C#

using Umbraco.Core.IO;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the configuration editor for the slider value editor.
/// </summary>
public class SliderConfigurationEditor : ConfigurationEditor<SliderConfiguration>
{
public SliderConfigurationEditor(IIOHelper ioHelper) : base(ioHelper)
{
}
}
}