I have a page with following on top:
@model AppMainModel
@{
ViewData["Title"] = "Home Page";
}
I would like to use AppMainModel and its properties in its master/layout page. Strongly typed if possible (e.g. avoid ViewData and the like).
Is this possible?