Files
Umbraco-CMS/src/UmbracoExamine/IndexTypes.cs
2013-01-05 03:01:29 +03:00

39 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UmbracoExamine
{
/// <summary>
/// The index types stored in the Lucene Index
/// </summary>
public static class IndexTypes
{
/// <summary>
/// The content index type
/// </summary>
/// <remarks>
/// Is lower case because the Standard Analyzer requires lower case
/// </remarks>
public const string Content = "content";
/// <summary>
/// The media index type
/// </summary>
/// <remarks>
/// Is lower case because the Standard Analyzer requires lower case
/// </remarks>
public const string Media = "media";
/// <summary>
/// The member index type
/// </summary>
/// <remarks>
/// Is lower case because the Standard Analyzer requires lower case
/// </remarks>
public const string Member = "member";
}
}