diff options
| author | ConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com> | 2020-06-08 14:43:58 -0500 |
|---|---|---|
| committer | ConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com> | 2020-06-08 14:43:58 -0500 |
| commit | 35ff2be9d766ba4f5d85f859d86ff03ce588795f (patch) | |
| tree | 4957634b172a8e2fa3433f06f27d05154facb5cf /MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs | |
| parent | 5d281adedd0d36f34dd3cb8344af3e6a44b5a29f (diff) | |
| parent | dcc131740d146da9046bfc0b7820fd2050d8e423 (diff) | |
Merge remote-tracking branch 'upstream/master' into quickconnect
Diffstat (limited to 'MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs')
| -rw-r--r-- | MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs b/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs new file mode 100644 index 000000000..b45cfc30f --- /dev/null +++ b/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Profile.cs @@ -0,0 +1,11 @@ +namespace MediaBrowser.Providers.Plugins.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; } + } +} |
