diff --git a/src/Umbraco.Examine/IUmbracoIndexer.cs b/src/Umbraco.Examine/IUmbracoIndexer.cs
new file mode 100644
index 0000000000..c926bfb2fe
--- /dev/null
+++ b/src/Umbraco.Examine/IUmbracoIndexer.cs
@@ -0,0 +1,23 @@
+using Examine;
+
+namespace Umbraco.Examine
+{
+ ///
+ /// A Marker interface for defining an Umbraco indexer
+ ///
+ public interface IUmbracoIndexer : IIndexer
+ {
+ ///
+ /// When set to true Umbraco will keep the index in sync with Umbraco data automatically
+ ///
+ bool EnableDefaultEventHandler { get; }
+
+ ///
+ /// When set to true data will not be deleted from the index if the data is being unpublished (not deleted)
+ ///
+ ///
+ /// Generally used only for published content
+ ///
+ bool SupportUnpublishedContent { get; }
+ }
+}