Files
Umbraco-CMS/src/Umbraco.Web/Models/RenderModel.cs

21 lines
545 B
C#
Raw Normal View History

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