Constructor.cs 279 B

12345678910
  1. namespace FormulaOneApp.ErgastAPI.Model.Constructor
  2. {
  3. public class Constructor
  4. {
  5. public string ConstructorId { get; set; }
  6. public string Url { get; set; }
  7. public string Name { get; set; }
  8. public string Nationality { get; set; }
  9. }
  10. }