AdrianJSClark / aydsko-iracingdata

A .NET access library for querying the iRacing "Data" API.
MIT License
28 stars 8 forks source link

DriverResult is missing the CountryCode property #228

Open DuncWatts opened 2 hours ago

DuncWatts commented 2 hours ago

I believe this is a recentish change, but the country code is now available on the driver result. Just needs a new property adding to the model.

    [JsonPropertyName("country_code")]
    public string? CountryCode { get; set; } = default!;
DuncWatts commented 2 hours ago

This is also applicable to Result as well as DriverResult