Files
Umbraco-CMS/src/Umbraco.Core/Constants-Examine.cs
Per Ploug Krogslund 7440855c72 merge
2013-11-07 17:16:22 +01:00

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";
}
}
}