Part.cs 328 B

1234567891011
  1. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
  2. {
  3. public class Part
  4. {
  5. public string Title { get; set; }
  6. public int Id { get; set; }
  7. public string Release_Date { get; set; }
  8. public string Poster_Path { get; set; }
  9. public string Backdrop_Path { get; set; }
  10. }
  11. }