12 lines
296 B
C#
12 lines
296 B
C#
using Examine;
|
|
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Examine
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for a <see cref="ValueSet"/> builder for only published content
|
|
/// </summary>
|
|
public interface IPublishedContentValueSetBuilder : IValueSetBuilder<IContent>
|
|
{
|
|
}
|
|
} |