Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created June 8, 2018 13:26
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 ssougnez/5766068b5970b56aa57eb043518d6ac3 to your computer and use it in GitHub Desktop.
Save ssougnez/5766068b5970b56aa57eb043518d6ac3 to your computer and use it in GitHub Desktop.
public class Driver
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int ChampionTitleCount { get; set; }
}
public class Track
{
public int Id { get; set; }
public string Title { get; set; }
public Driver BestLapTimeDriver { get; set; }
public List Winners { get; set; } = new List();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment