I\'ve been reading the various posts on view models and check boxes, but my brain is starting to lock up and I need a little push in the right direction.
public class AddMovieVM
{
[DisplayName("Title: ")]
public string Title { get; set; }
public List Genres { get; set; }
public AddMovieVM()
{
Genres = new List();
}
}