aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs
blob: b45cfc30f258bf7fcef4736e6c8c736cae646d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
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; }
    }
}