Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/IndexCreatorSettings.cs

21 lines
527 B
C#
Raw Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System;
namespace Umbraco.Cms.Core.Configuration.Models
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Typed configuration options for index creator settings.
/// </summary>
[UmbracoOptions(Constants.Configuration.ConfigExamine)]
public class IndexCreatorSettings
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Gets or sets a value for lucene directory factory type.
/// </summary>
public LuceneDirectoryFactory LuceneDirectoryFactory { get; set; }
2020-03-16 14:02:08 +01:00
}
}