Skip to content

Instantly share code, notes, and snippets.

@DannyRusnok
Last active April 13, 2020 13:58
Show Gist options
  • Save DannyRusnok/d28840a36a65ae0fe34a27fe0c41bf74 to your computer and use it in GitHub Desktop.
Save DannyRusnok/d28840a36a65ae0fe34a27fe0c41bf74 to your computer and use it in GitHub Desktop.
public class Movie
{
public string Title { get; set; }
public string Description { get; set; }
public List<Actor> Actors { get; set; } = new List<Actor>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment