2
0

CollectionResult.cs 469 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
  3. {
  4. public class CollectionResult
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; }
  8. public string Overview { get; set; }
  9. public string Poster_Path { get; set; }
  10. public string Backdrop_Path { get; set; }
  11. public List<Part> Parts { get; set; }
  12. public CollectionImages Images { get; set; }
  13. }
  14. }