namespace Umbraco.Core.Models.PublishedContent { /// /// Represents the published variation context. /// /// /// The published variation context indicates which variation is the current default variation. /// public class PublishedVariationContext { /// /// Initializes a new instance of the class. /// public PublishedVariationContext(string culture = null, string segment = null) { Culture = culture; Segment = segment; } /// /// Gets the culture. /// public string Culture { get; set; } /// /// Gets the segment. /// public string Segment { get; set; } } }