1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #pragma warning disable CS1591
- using System.Collections.Generic;
- using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
- namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
- {
- public class MovieResult
- {
- public bool Adult { get; set; }
- public string Backdrop_Path { get; set; }
- public BelongsToCollection Belongs_To_Collection { get; set; }
- public long Budget { get; set; }
- public List<Genre> Genres { get; set; }
- public string Homepage { get; set; }
- public int Id { get; set; }
- public string Imdb_Id { get; set; }
- public string Original_Title { get; set; }
- public string Original_Name { get; set; }
- public string Overview { get; set; }
- public double Popularity { get; set; }
- public string Poster_Path { get; set; }
- public List<ProductionCompany> Production_Companies { get; set; }
- public List<ProductionCountry> Production_Countries { get; set; }
- public string Release_Date { get; set; }
- public long Revenue { get; set; }
- public int Runtime { get; set; }
- public List<SpokenLanguage> Spoken_Languages { get; set; }
- public string Status { get; set; }
- public string Tagline { get; set; }
- public string Title { get; set; }
- public string Name { get; set; }
- public double Vote_Average { get; set; }
- public int Vote_Count { get; set; }
- public Casts Casts { get; set; }
- public Releases Releases { get; set; }
- public Images Images { get; set; }
- public Keywords Keywords { get; set; }
- public Trailers Trailers { get; set; }
- public string GetOriginalTitle()
- {
- return Original_Name ?? Original_Title;
- }
- public string GetTitle()
- {
- return Name ?? Title ?? GetOriginalTitle();
- }
- }
- }
|