jellyfin-server/MediaBrowser.Providers/Tmdb/Models/General/Backdrop.cs

14 lines
408 B
C#
Raw Normal View History

namespace MediaBrowser.Providers.Tmdb.Models.General
{
public class Backdrop
{
public double aspect_ratio { get; set; }
public string file_path { get; set; }
public int height { get; set; }
public string iso_639_1 { get; set; }
public double vote_average { get; set; }
public int vote_count { get; set; }
public int width { get; set; }
}
}