using System.Collections.Generic;
using Umbraco.Core.Models;
namespace Umbraco.Web.Models
{
///
/// The model used when rendering Partial View Macros
///
public class PartialViewMacroModel
{
public PartialViewMacroModel(IPublishedContent page, IDictionary macroParams)
{
CurrentPage = page;
MacroParameters = macroParams;
}
public IPublishedContent CurrentPage { get; private set; }
public IDictionary MacroParameters { get; private set; }
}
}