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

17 lines
357 B
C#
Raw Normal View History

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