Hi all,

I have this error in my Index.cshtml for the following code:

PHP Code:
 @Html.DropDownListFor(=> p.Make_IDViewBag.Vehicle_Make as SelectList"Select Vehicle", new { id "ContID" }) 
Here the model is implemented:

PHP Code:
@model IEnumerable<GoogleMap.Models.GoogleMapViewModel
Here's the GoogleMapViewModel.cs code:

PHP Code:
using GoogleMap.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace 
GoogleMap.Models
{
    public class 
GoogleMapViewModel
    
{
        public 
string Model_Name getset; }
        public 
int Model_ID getset; }
        public 
string Make_Name getset; }
        public 
int Make_ID getset; }
        public 
int User_ID getset; }
        public 
Nullable<doubleMapLat getset; }
        public 
Nullable<doubleMapLong getset; }
        public 
virtual User User getset; }
        public 
virtual Vehicle_Details Vehicle_Details getset; }
        public 
virtual Vehicle_Make Vehicle_Make getset; }     
    }

The definition is there but VS gives me the error. How do I fix it?

Thank you!