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