StandingList.cs 360 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace AdaptTablet.ErgastAPI.Model.Standing
  3. {
  4. public class StandingList
  5. {
  6. public string Season { get; set; }
  7. public string Round { get; set; }
  8. public List<DriverStanding> DriverStandings { get; set; }
  9. public List<ConstructorStanding> ConstructorStandings { get; set; }
  10. }
  11. }