aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs
blob: 0a1f8843eb244cae1bd888984d95c4e417319502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma warning disable CS1591

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
    public class Profile
    {
        public string File_Path { get; set; }

        public int Width { get; set; }

        public int Height { get; set; }

        public object Iso_639_1 { get; set; }

        public double Aspect_Ratio { get; set; }
    }
}