mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
12 lines
334 B
C#
12 lines
334 B
C#
|
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; }
|
||
|
}
|
||
|
}
|