using System.Collections.Generic; using Newtonsoft.Json; namespace TMDbLib.Objects.General { public class WatchProviders { [JsonProperty("link")] public string Link { get; set; } [JsonProperty("flatrate")] public List FlatRate { get; set; } [JsonProperty("rent")] public List Rent { get; set; } [JsonProperty("buy")] public List Buy { get; set; } [JsonProperty("free")] public List Free { get; set; } [JsonProperty("ads")] public List Ads { get; set; } } }