#region Copyright // /************************************************************************ // Copyright (c) 2017 Jamie Rees // File: TmdbMovieDetails.cs // Created By: Jamie Rees // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ************************************************************************/ #endregion using System.Collections.Generic; namespace Ombi.Api.Models.Movie { public class Genre { public int id { get; set; } public string name { get; set; } } public class ProductionCompany { public string name { get; set; } public int id { get; set; } } public class ProductionCountry { public string iso_3166_1 { get; set; } public string name { get; set; } } public class SpokenLanguage { public string iso_639_1 { get; set; } public string name { get; set; } } public class Result { public string id { get; set; } public string iso_639_1 { get; set; } public string iso_3166_1 { get; set; } public string key { get; set; } public string name { get; set; } public string site { get; set; } public int size { get; set; } public string type { get; set; } } public class Videos { public List results { get; set; } } public class TmdbMovieDetails { public bool adult { get; set; } public string backdrop_path { get; set; } public object belongs_to_collection { get; set; } public int budget { get; set; } public List genres { get; set; } public string homepage { get; set; } public int id { get; set; } public string imdb_id { get; set; } public string original_language { get; set; } public string original_title { get; set; } public string overview { get; set; } public double popularity { get; set; } public string poster_path { get; set; } public List production_companies { get; set; } public List production_countries { get; set; } public string release_date { get; set; } public int revenue { get; set; } public int runtime { get; set; } public List spoken_languages { get; set; } public string status { get; set; } public string tagline { get; set; } public string title { get; set; } public bool video { get; set; } public double vote_average { get; set; } public int vote_count { get; set; } public Videos videos { get; set; } } }