13 lines
296 B
C#
13 lines
296 B
C#
using Examine;
|
|
|
|
namespace Umbraco.Examine
|
|
{
|
|
public interface IUmbracoIndexConfig
|
|
{
|
|
IContentValueSetValidator GetContentValueSetValidator();
|
|
IContentValueSetValidator GetPublishedContentValueSetValidator();
|
|
IValueSetValidator GetMemberValueSetValidator();
|
|
|
|
}
|
|
}
|