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