namespace Umbraco.Examine
{
///
/// The index types stored in the Lucene Index
///
public static class IndexTypes
{
///
/// The content index type
///
///
/// Is lower case because the Standard Analyzer requires lower case
///
public const string Content = "content";
///
/// The media index type
///
///
/// Is lower case because the Standard Analyzer requires lower case
///
public const string Media = "media";
///
/// The member index type
///
///
/// Is lower case because the Standard Analyzer requires lower case
///
public const string Member = "member";
}
}