Skip to content

Instantly share code, notes, and snippets.

@beyond-code-github
Last active December 17, 2015 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beyond-code-github/81362e8f2bfd831c4955 to your computer and use it in GitHub Desktop.
Save beyond-code-github/81362e8f2bfd831c4955 to your computer and use it in GitHub Desktop.
Movie model
public class Movie
{
public string Title { get; set; }
public DateTime ReleaseDate { get; set; }
public string Director { get; set; }
public int MetaScore { get; set; }
public bool Recommended { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment