using Umbraco.Cms.Core.IO;
using Umbraco.Cms.Core.PropertyEditors;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
///
/// Represents the configuration editor for the email address value editor.
///
public class EmailAddressConfigurationEditor : ConfigurationEditor
{
public EmailAddressConfigurationEditor(IIOHelper ioHelper) : base(ioHelper)
{
}
}
}