2018-04-28 21:57:07 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using Newtonsoft.Json;
|
2018-04-24 01:31:01 +10:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.PublishedCache.NuCache.DataSource
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents the culture variation information on a content item
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
internal class CultureVariation
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("name")]
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
2019-03-05 11:15:30 +01:00
|
|
|
|
[JsonProperty("urlSegment")]
|
|
|
|
|
|
public string UrlSegment { get; set; }
|
|
|
|
|
|
|
2018-04-28 21:57:07 +02:00
|
|
|
|
[JsonProperty("date")]
|
|
|
|
|
|
public DateTime Date { get; set; }
|
2018-12-13 15:08:12 +01:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("isDraft")]
|
|
|
|
|
|
public bool IsDraft { get; set; }
|
2018-04-24 01:31:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|