Routes and controllers gone through

This commit is contained in:
2019-01-15 22:40:53 +01:00
parent c7d11d8b4c
commit 88641f2a20
7 changed files with 10861 additions and 1 deletions

13
Vidly/Models/Movie.cs Normal file
View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Vidly.Models
{
public class Movie
{
public int Id { get; set; }
public string Name { get; set; }
}
}