Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/BackOfficePreview.cs
2018-04-05 14:12:15 +02:00

14 lines
392 B
C#

namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// The model representing Previewing of a content item from the back office
/// </summary>
public class BackOfficePreview
{
public string PreviewExtendedHeaderView { get; set; }
//TODO: We could potentially have a 'footer' view
public bool DisableDevicePreview { get; set; }
}
}