2018-04-30 21:03:43 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using Newtonsoft.Json;
|
2017-12-07 13:22:32 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.PublishedCache.NuCache.DataSource
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class PropertyData
|
|
|
|
|
|
{
|
2018-04-21 09:57:28 +02:00
|
|
|
|
[JsonProperty("culture")]
|
2018-05-08 13:03:19 +10:00
|
|
|
|
public string Culture { get; set; }
|
2017-12-07 13:22:32 +01:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("seg")]
|
2018-05-08 13:03:19 +10:00
|
|
|
|
public string Segment { get; set; }
|
2017-12-07 13:22:32 +01:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("val")]
|
|
|
|
|
|
public object Value { get; set; }
|
|
|
|
|
|
}
|
2018-04-21 09:57:28 +02:00
|
|
|
|
}
|