CircuitTable.cs 227 B

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