BelongsToCollection.cs 288 B

12345678910
  1. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
  2. {
  3. public class BelongsToCollection
  4. {
  5. public int Id { get; set; }
  6. public string Name { get; set; }
  7. public string Poster_Path { get; set; }
  8. public string Backdrop_Path { get; set; }
  9. }
  10. }