aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Tmdb/Models/General/Profile.cs
blob: f87d14850cba091b29f2ba6b492e9a6cb554d9d1 (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; }
    }
}