blob: 462fdab5348ce258877ca04cfc150522f183cff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
{
public class Part
{
public string Title { get; set; }
public int Id { get; set; }
public string Release_Date { get; set; }
public string Poster_Path { get; set; }
public string Backdrop_Path { get; set; }
}
}
|