using System.Collections.Generic; using Newtonsoft.Json; namespace TMDbLib.Objects.Movies { public class Releases { [JsonProperty("countries")] public List Countries { get; set; } [JsonProperty("id")] public int Id { get; set; } } }