Files
Umbraco-CMS/src/Umbraco.Core/PublishedCache/IPublishedSnapshotAccessor.cs
2020-02-24 08:21:53 +01:00

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; }
}
}