Files
Umbraco-CMS/src/Umbraco.Web/PublishedCache/NuCache/DataSource/ContentData.cs

20 lines
564 B
C#
Raw Normal View History

2016-05-27 14:26:28 +02:00
using System;
using System.Collections.Generic;
namespace Umbraco.Web.PublishedCache.NuCache.DataSource
{
// represents everything that is specific to draft or published version
2017-07-12 14:09:31 +02:00
internal class ContentData
2016-05-27 14:26:28 +02:00
{
public bool Published { get; set; }
public string Name { get; set; }
public Guid Version { get; set; }
public DateTime VersionDate { get; set; }
public int WriterId { get; set; }
public int TemplateId { get; set; }
public IDictionary<string, object> Properties { get; set; }
}
}