2019-08-18 11:20:52 +00:00
|
|
|
namespace MediaBrowser.Providers.Tmdb.Models.TV
|
|
|
|
{
|
|
|
|
public class Season
|
|
|
|
{
|
2019-08-18 12:44:13 +00:00
|
|
|
public string Air_Date { get; set; }
|
|
|
|
public int Episode_Count { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Poster_Path { get; set; }
|
|
|
|
public int Season_Number { get; set; }
|
2019-08-18 11:20:52 +00:00
|
|
|
}
|
|
|
|
}
|