using System.Collections.Generic; using Newtonsoft.Json; namespace TMDbLib.Objects.Timezones { public class Timezones { [JsonProperty("list")] public Dictionary> List { get; set; } } }