jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/SeriesResult.cs

70 lines
1.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2020-05-30 23:23:09 -07:00
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
2020-05-30 23:23:09 -07:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class SeriesResult
{
2019-08-18 05:44:13 -07:00
public string Backdrop_Path { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<CreatedBy> Created_By { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<int> Episode_Run_Time { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public DateTime First_Air_Date { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<Genre> Genres { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Homepage { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public int Id { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public bool In_Production { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<string> Languages { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public DateTime Last_Air_Date { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Name { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<Network> Networks { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public int Number_Of_Episodes { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public int Number_Of_Seasons { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Original_Name { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<string> Origin_Country { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Overview { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Popularity { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Poster_Path { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<Season> Seasons { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Status { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public double Vote_Average { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public int Vote_Count { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public Credits Credits { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public Images Images { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public Keywords Keywords { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public ExternalIds External_Ids { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public General.Videos Videos { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public ContentRatings Content_Ratings { get; set; }
2020-06-15 14:43:52 -07:00
public string ResultLanguage { get; set; }
}
}