Merge with 4.10.0

This commit is contained in:
sitereactor
2012-10-24 12:39:56 -02:00
95 changed files with 9939 additions and 8371 deletions

View File

@@ -0,0 +1,21 @@
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; }
}
}