using System.Globalization; using Umbraco.Core.Models; namespace Umbraco.Web.Models { /// /// Represents the model for the current rendering page in Umbraco /// public class RenderModel { /// /// Returns the current IPublishedContent object /// public IPublishedContent Content { get; internal set; } /// /// Returns the current Culture assigned to the page being rendered /// public CultureInfo CurrentCulture { get; internal set; } } }