QualifyingResult.cs 414 B

1234567891011121314
  1. namespace FormulaOneApp.ErgastAPI.Model
  2. {
  3. public class QualifyingResult
  4. {
  5. public string Number { get; set; }
  6. public string Position { get; set; }
  7. public Driver.Driver Driver { get; set; }
  8. public Constructor.Constructor Constructor { get; set; }
  9. public string Q1 { get; set; }
  10. public string Q2 { get; set; }
  11. public string Q3 { get; set; }
  12. }
  13. }