From 5abc4df70acacf1ad1a7511db86f012b1789c8d8 Mon Sep 17 00:00:00 2001 From: alex6dj Date: Mon, 11 Nov 2024 12:53:49 -0500 Subject: [PATCH] Add NativeName property to Country --- TMDbLib/Objects/Countries/Country.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TMDbLib/Objects/Countries/Country.cs b/TMDbLib/Objects/Countries/Country.cs index ce28d7f2..bfe8730b 100644 --- a/TMDbLib/Objects/Countries/Country.cs +++ b/TMDbLib/Objects/Countries/Country.cs @@ -9,5 +9,8 @@ public class Country [JsonProperty("english_name")] public string EnglishName { get; set; } + + [JsonProperty("native_name")] + public string NativeName { get; set; } } } \ No newline at end of file