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