Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Created September 24, 2014 12:55
Show Gist options
  • Save ThomasArdal/ce42fd67a18daa2574f2 to your computer and use it in GitHub Desktop.
Save ThomasArdal/ce42fd67a18daa2574f2 to your computer and use it in GitHub Desktop.
Movie class with constructor
public class Movie
{
public string Title { get; private set; }
public List<string> Genres { get; private set; }
public Movie(string title, List<string> genres)
{
Title = title;
Genres = genres;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment