Go to the documentation of this file.00001 using System;
00002 using System.Web.Mvc;
00003 using N2.Web.UI;
00004
00005 namespace N2.Web.Mvc
00006 {
00011 [Obsolete("Use System.Web.Mvc.ViewMasterPage<>")]
00012 public class N2ViewMasterPage<TItem> : ViewMasterPage<TItem>, IItemContainer<TItem>
00013 where TItem : ContentItem
00014 {
00015 public TItem CurrentItem
00016 {
00017 get { return Model; }
00018 }
00019
00020 ContentItem IItemContainer.CurrentItem
00021 {
00022 get { return CurrentItem; }
00023 }
00024 }
00025 }