Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Backdrop.cs

14 lines
416 B
C#
Raw Normal View History

2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Backdrop
{
2019-08-18 14:44:13 +02:00
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; }
}
}