BelongsToCollection.cs 323 B

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