2018-02-09 13:19:56 +01:00
|
|
|
namespace Umbraco.Web.Features
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents enabled features.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal class EnabledFeatures
|
|
|
|
|
{
|
2018-02-28 13:41:49 +01:00
|
|
|
/// <summary>
|
2018-03-14 13:56:49 +11:00
|
|
|
/// This allows us to inject a razor view into the Umbraco preview view to extend it
|
2018-02-28 13:41:49 +01:00
|
|
|
/// </summary>
|
2018-03-14 13:56:49 +11:00
|
|
|
/// <remarks>
|
|
|
|
|
/// This is set to a virtual path of a razor view file
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public string PreviewExtendedView { get; set; }
|
2018-02-09 13:19:56 +01:00
|
|
|
}
|
2018-02-12 11:12:46 +01:00
|
|
|
}
|