ConstructorStanding.cs 347 B

123456789101112
  1. namespace AdaptTablet.ErgastAPI.Model.Standing
  2. {
  3. public class ConstructorStanding
  4. {
  5. public string Position { get; set; }
  6. public string PositionText { get; set; }
  7. public string Points { get; set; }
  8. public string Wins { get; set; }
  9. public Constructor.Constructor Constructor { get; set; }
  10. }
  11. }