jellyfin / TMDbLib

C#.Net library for TheMovieDB
MIT License
344 stars 128 forks source link

Support native names in countries #438

Open alex6dj opened 11 months ago

alex6dj commented 11 months ago

Short request. Country currently don accept the use of native name property.

public class Country
  {
    [JsonProperty("iso_3166_1")]
    public string Iso_3166_1 { get; set; }

    [JsonProperty("english_name")]
    public string EnglishName { get; set; }
  }