25 lines
659 B
C#
25 lines
659 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Umbraco.Core
|
|
{
|
|
public static partial class Constants
|
|
{
|
|
public static class Examine
|
|
{
|
|
/// <summary>
|
|
/// The alias of the internal member searcher
|
|
/// </summary>
|
|
public const string InternalMemberSearcher = "InternalMemberSearcher";
|
|
|
|
/// <summary>
|
|
/// The alias of the internal content searcher
|
|
/// </summary>
|
|
public const string InternalSearcher = "InternalSearcher";
|
|
}
|
|
}
|
|
}
|