diff --git a/TMDbLib/Objects/General/WatchProviders.cs b/TMDbLib/Objects/General/WatchProviders.cs index d6a1225..1867e0b 100644 --- a/TMDbLib/Objects/General/WatchProviders.cs +++ b/TMDbLib/Objects/General/WatchProviders.cs @@ -16,5 +16,11 @@ namespace TMDbLib.Objects.General [JsonProperty("buy")] public List Buy { get; set; } + + [JsonProperty("free")] + public List Free { get; set; } + + [JsonProperty("ads")] + public List Ads { get; set; } } -} \ No newline at end of file +}