jellyfin/MediaBrowser.Providers/Tmdb/Models/General/Profile.cs

12 lines
334 B
C#
Raw Normal View History

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; }
}
}