Published variants in NuCache

This commit is contained in:
Stephan
2017-12-07 13:22:32 +01:00
parent b392d72bc2
commit 269531c570
60 changed files with 557 additions and 508 deletions

View File

@@ -3,17 +3,17 @@ using System.Collections.Generic;
namespace Umbraco.Web.PublishedCache.NuCache.DataSource
{
// represents everything that is specific to draft or published version
// represents everything that is specific to edited or published version
internal class ContentData
{
public bool Published { get; set; }
public string Name { get; set; }
public Guid Version { get; set; }
public int VersionId { get; set; }
public DateTime VersionDate { get; set; }
public int WriterId { get; set; }
public int TemplateId { get; set; }
public IDictionary<string, object> Properties { get; set; }
public IDictionary<string, PropertyData[]> Properties { get; set; }
}
}