mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-12 13:22:17 +01: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; }
|
|
}
|
|
}
|