2020-06-19 20:24:13 +02:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
2020-05-31 15:23:09 +09:00
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
|
2019-08-18 13:20:52 +02:00
|
|
|
{
|
|
|
|
|
public class Episode
|
|
|
|
|
{
|
2019-08-18 14:44:13 +02:00
|
|
|
public string Air_Date { get; set; }
|
2020-06-16 09:43:52 +12:00
|
|
|
|
2019-08-18 14:44:13 +02:00
|
|
|
public int Episode_Number { get; set; }
|
2020-06-16 09:43:52 +12:00
|
|
|
|
2019-08-18 14:44:13 +02:00
|
|
|
public int Id { get; set; }
|
2020-06-16 09:43:52 +12:00
|
|
|
|
2019-08-18 14:44:13 +02:00
|
|
|
public string Name { get; set; }
|
2020-06-16 09:43:52 +12:00
|
|
|
|
2019-08-18 14:44:13 +02:00
|
|
|
public string Overview { get; set; }
|
2020-06-16 09:43:52 +12:00
|
|
|
|
2019-08-18 14:44:13 +02:00
|
|
|
public string Still_Path { get; set; }
|
2020-06-16 09:43:52 +12:00
|
|
|
|
2019-08-18 14:44:13 +02:00
|
|
|
public double Vote_Average { get; set; }
|
2020-06-16 09:43:52 +12:00
|
|
|
|
2019-08-18 14:44:13 +02:00
|
|
|
public int Vote_Count { get; set; }
|
2019-08-18 13:20:52 +02:00
|
|
|
}
|
|
|
|
|
}
|