10 lines
206 B
C#
10 lines
206 B
C#
using Umbraco.Cms.Infrastructure;
|
|
|
|
namespace Umbraco.Cms.Core
|
|
{
|
|
public interface IPublishedContentQueryAccessor
|
|
{
|
|
bool TryGetValue(out IPublishedContentQuery publishedContentQuery);
|
|
}
|
|
}
|