31 lines
752 B
C#
31 lines
752 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// A language code, e.g. en
|
|
/// </summary>
|
|
[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; }
|
|
}
|
|
} |