diff options
Diffstat (limited to 'MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/Part.cs')
| -rw-r--r-- | MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/Part.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/Part.cs b/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/Part.cs new file mode 100644 index 000000000..a48124b3e --- /dev/null +++ b/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/Part.cs @@ -0,0 +1,17 @@ +#pragma warning disable CS1591 + +namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections +{ + public class Part + { + public string Title { get; set; } + + public int Id { get; set; } + + public string Release_Date { get; set; } + + public string Poster_Path { get; set; } + + public string Backdrop_Path { get; set; } + } +} |
