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

16 lines
436 B
C#

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