"model" is only used in the page directive at the top of the view to dictate which class the view uses for its model
@model MyClass
In the view itself Model represents the model that was passed to the view by the controller;
return View("MyView.cshtml", instanceOfMyClass)
So in the MyView.cshtml view code Model will represent instanceOfMyClass