11 lines
275 B
C#
11 lines
275 B
C#
namespace Umbraco.Web.PublishedCache
|
|
{
|
|
/// <summary>
|
|
/// Provides access to the "current" <see cref="IPublishedSnapshot"/>.
|
|
/// </summary>
|
|
public interface IPublishedSnapshotAccessor
|
|
{
|
|
IPublishedSnapshot PublishedSnapshot { get; set; }
|
|
}
|
|
}
|