Files
linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/IViewStartPageChild.cs

9 lines
197 B
C#
Raw Normal View History

namespace System.Web.Mvc {
internal interface IViewStartPageChild {
HtmlHelper<object> Html { get; }
UrlHelper Url { get; }
ViewContext ViewContext { get; }
}
}