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