Created
June 8, 2018 13:26
-
-
Save ssougnez/5766068b5970b56aa57eb043518d6ac3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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