Files
Umbraco-CMS/src/Umbraco.Core/Models/PublishedContent/CurrentVariation.cs
T
2018-04-30 09:14:14 +02:00

28 lines
708 B
C#

namespace Umbraco.Core.Models.PublishedContent
{
/// <summary>
/// Represents the current variation.
/// </summary>
public class CurrentVariation
{
/// <summary>
/// Initializes a new instance of the <see cref="CurrentVariation"/> class.
/// </summary>
public CurrentVariation(string culture = null, string segment = null)
{
Culture = culture;
Segment = segment;
}
/// <summary>
/// Gets the culture.
/// </summary>
public string Culture { get; set; }
/// <summary>
/// Gets the segment.
/// </summary>
public string Segment { get; set; }
}
}