diff options
Diffstat (limited to 'MediaBrowser.Providers/Tmdb/Models/Collections')
3 files changed, 0 insertions, 37 deletions
diff --git a/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionImages.cs b/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionImages.cs deleted file mode 100644 index 18f26c397..000000000 --- a/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionImages.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System.Collections.Generic; -using MediaBrowser.Providers.Tmdb.Models.General; - -namespace MediaBrowser.Providers.Tmdb.Models.Collections -{ - public class CollectionImages - { - public List<Backdrop> Backdrops { get; set; } - public List<Poster> Posters { get; set; } - } -} diff --git a/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionResult.cs b/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionResult.cs deleted file mode 100644 index 53d2599f8..000000000 --- a/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionResult.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.Collections.Generic; - -namespace MediaBrowser.Providers.Tmdb.Models.Collections -{ - public class CollectionResult - { - public int Id { get; set; } - public string Name { get; set; } - public string Overview { get; set; } - public string Poster_Path { get; set; } - public string Backdrop_Path { get; set; } - public List<Part> Parts { get; set; } - public CollectionImages Images { get; set; } - } -} diff --git a/MediaBrowser.Providers/Tmdb/Models/Collections/Part.cs b/MediaBrowser.Providers/Tmdb/Models/Collections/Part.cs deleted file mode 100644 index ff19291c7..000000000 --- a/MediaBrowser.Providers/Tmdb/Models/Collections/Part.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace MediaBrowser.Providers.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; } - } -} |
