Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs

18 lines
358 B
C#
Raw Normal View History

#pragma warning disable CS1591
2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Profile
{
2020-03-24 16:12:06 +01:00
public string File_Path { get; set; }
2020-06-16 09:43:52 +12:00
2020-03-24 16:12:06 +01:00
public int Width { get; set; }
2020-06-16 09:43:52 +12:00
2020-03-24 16:12:06 +01:00
public int Height { get; set; }
2020-06-16 09:43:52 +12:00
2020-03-24 16:12:06 +01:00
public object Iso_639_1 { get; set; }
2020-06-16 09:43:52 +12:00
2020-03-24 16:12:06 +01:00
public double Aspect_Ratio { get; set; }
}
}