using Microsoft.AspNetCore.Mvc.ViewFeatures; namespace Umbraco.Web.Common.Controllers { /// /// A request feature to allowing proxying viewdata from one controller to another /// public sealed class ProxyViewDataFeature { /// /// Initializes a new instance of the class. /// public ProxyViewDataFeature(ViewDataDictionary viewData) => ViewData = viewData; /// /// Gets the /// public ViewDataDictionary ViewData { get; } } }