using Newtonsoft.Json;
using System.Collections.Generic;
namespace Umbraco.Web.PublishedCache.NuCache.DataSource
{
///
/// The content item 1:M data that is serialized to JSON
///
internal class ContentNestedData
{
[JsonProperty("properties")]
public Dictionary PropertyData { get; set; }
[JsonProperty("cultureData")]
public Dictionary CultureData { get; set; }
}
}