using Newtonsoft.Json; namespace Umbraco.Web.PublishedCache.NuCache.DataSource { /// /// Represents the culture variation information on a content item /// internal class CultureVariation { [JsonProperty("name")] public string Name { get; set; } //TODO: We may want some date stamps here } }