using Newtonsoft.Json; using System.Collections.Generic; namespace TMDbLib.Objects.General { public class AlternativeNames { [JsonProperty("id")] public int Id { get; set; } [JsonProperty("results")] public List Results { get; set; } } }