diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/ultrasimple/ultrasimple.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/ultrasimple/ultrasimple.html
new file mode 100644
index 0000000000..76e31ecaa5
--- /dev/null
+++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/ultrasimple/ultrasimple.html
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/src/Umbraco.Web/PropertyEditors/UltraSimplePropertyEditor.cs b/src/Umbraco.Web/PropertyEditors/UltraSimplePropertyEditor.cs
new file mode 100644
index 0000000000..6c4b65c98c
--- /dev/null
+++ b/src/Umbraco.Web/PropertyEditors/UltraSimplePropertyEditor.cs
@@ -0,0 +1,10 @@
+using Umbraco.Core;
+using Umbraco.Core.PropertyEditors;
+
+namespace Umbraco.Web.PropertyEditors
+{
+ [PropertyEditor(Constants.PropertyEditors.UltraSimpleEditorAlias, "Ultrasimple editor", "ultrasimple")]
+ public class UltraSimplePropertyEditor : PropertyEditor
+ {
+ }
+}
\ No newline at end of file
diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj
index e1747a481f..b4108ad386 100644
--- a/src/Umbraco.Web/Umbraco.Web.csproj
+++ b/src/Umbraco.Web/Umbraco.Web.csproj
@@ -370,6 +370,7 @@
+