using System.Collections.Generic; using Newtonsoft.Json; namespace TMDbLib.Objects.General { public class Images { [JsonProperty("backdrops")] public List Backdrops { get; set; } [JsonProperty("posters")] public List Posters { get; set; } [JsonProperty("logos")] public List Logos { get; set; } } }