using System;
using System.Xml.Linq;
namespace Umbraco.Core.Models
{
///
/// Used content repository in order to add an entity to the persisted collection to be saved
/// in a single transaction during saving an entity
///
internal class ContentPreviewEntity : ContentXmlEntity
where TContent : IContentBase
{
public ContentPreviewEntity(bool previewExists, TContent content, Func xml)
: base(previewExists, content, xml)
{
Version = content.Version;
}
public Guid Version { get; private set; }
}
}