Files
Umbraco-CMS/src/Umbraco.Web/Search/IUmbracoIndexesCreator.cs

15 lines
284 B
C#

using System.Collections.Generic;
using Examine;
using Umbraco.Examine;
namespace Umbraco.Web.Search
{
/// <inheritdoc />
/// <summary>
/// Used to create the Umbraco indexes
/// </summary>
public interface IUmbracoIndexesCreator : IIndexCreator
{
}
}