Movies are editable as well

This commit is contained in:
2019-01-23 20:22:25 +01:00
parent 11b51493fe
commit ecadd21228
16 changed files with 678 additions and 19 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Vidly.Models;
namespace Vidly.ViewModels
{
public class MovieFormViewModel
{
public IEnumerable<MovieGenre> MovieGenres { get; set; }
public Movie Movie { get; set; }
}
}