StandingTable.cs 240 B

12345678910
  1. using System.Collections.Generic;
  2. namespace FormulaOneApp.ErgastAPI.Model.Standing
  3. {
  4. public class StandingTable
  5. {
  6. public string Season { get; set; }
  7. public List<StandingList> StandingsLists { get; set; }
  8. }
  9. }