CollectionResult.cs 507 B

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