00001 using System; 00002 using N2.Web.UI; 00003 00004 namespace N2.Web.Mvc 00005 { 00006 public interface IItemContainer<TItem> : IItemContainer 00007 where TItem : ContentItem 00008 { 00009 new TItem CurrentItem { get; } 00010 } 00011 }