DriverStanding.cs 435 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace FormulaOneApp.ErgastAPI.Model.Standing
  3. {
  4. public class DriverStanding
  5. {
  6. public string Position { get; set; }
  7. public string PositionText { get; set; }
  8. public string Points { get; set; }
  9. public string Wins { get; set; }
  10. public Driver.Driver Driver { get; set; }
  11. public List<Constructor.Constructor> Constructors { get; set; }
  12. }
  13. }