using Newtonsoft.Json; namespace TMDbLib.Objects.General { public class ImageData { [JsonProperty("aspect_ratio")] public double AspectRatio { get; set; } [JsonProperty("file_path")] public string FilePath { get; set; } [JsonProperty("height")] public int Height { get; set; } /// /// A language code, e.g. en /// [JsonProperty("iso_639_1")] public string Iso_639_1 { get; set; } [JsonProperty("vote_average")] public double VoteAverage { get; set; } [JsonProperty("vote_count")] public int VoteCount { get; set; } [JsonProperty("width")] public int Width { get; set; } } }