aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Still.cs
blob: 61de819b937bb8d5e12a08c04e3e67507b4d8bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma warning disable CS1591

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
    public class Still
    {
        public double Aspect_Ratio { get; set; }

        public string File_Path { get; set; }

        public int Height { get; set; }

        public string Id { 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; }
    }
}