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

24 lines
566 B
C#
Raw Normal View History

2018-04-28 21:57:07 +02:00
using System;
using Newtonsoft.Json;
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; }
[JsonProperty("isDraft")]
public bool IsDraft { get; set; }
}
}