13 lines
338 B
C#
13 lines
338 B
C#
using Umbraco.Cms.Core.Models;
|
|
|
|
namespace Umbraco.Cms.Infrastructure.Examine
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Marker interface for a <see cref="T:Examine.ValueSet" /> builder for supporting unpublished content
|
|
/// </summary>
|
|
public interface IContentValueSetBuilder : IValueSetBuilder<IContent>
|
|
{
|
|
}
|
|
}
|