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(TContent content, Func xml) : base(content, xml) { } public Guid Version { get { return Content.Version; } } } }