Files
Umbraco-CMS/src/Umbraco.Tests/Testing/Objects/Accessors/TestPublishedVariationContextAccessor.cs
2018-04-30 09:14:13 +02:00

18 lines
471 B
C#

using Umbraco.Core.Models.PublishedContent;
namespace Umbraco.Tests.Testing.Objects.Accessors
{
/// <summary>
/// Provides an implementation of <see cref="IPublishedVariationContextAccessor"/> for tests.
/// </summary>
public class TestPublishedVariationContextAccessor : IPublishedVariationContextAccessor
{
/// <inheritdoc />
public PublishedVariationContext Context
{
get;
set;
}
}
}