24 lines
716 B
C#
24 lines
716 B
C#
namespace Umbraco.Core
|
|
{
|
|
public static partial class Constants
|
|
{
|
|
public static class Examine
|
|
{
|
|
/// <summary>
|
|
/// The alias of the internal member indexer
|
|
/// </summary>
|
|
public const string InternalMemberIndexer = "InternalMemberIndexer";
|
|
|
|
/// <summary>
|
|
/// The alias of the internal content indexer
|
|
/// </summary>
|
|
public const string InternalIndexer = "InternalIndexer";
|
|
|
|
/// <summary>
|
|
/// The alias of the external content indexer
|
|
/// </summary>
|
|
public const string ExternalIndexer = "ExternalIndexer";
|
|
}
|
|
}
|
|
}
|