using Newtonsoft.Json; using TMDbLib.Objects.General; using TMDbLib.Objects.Search; namespace TMDbLib.Objects.Companies { public class Company { [JsonProperty("description")] public string Description { get; set; } [JsonProperty("headquarters")] public string Headquarters { get; set; } [JsonProperty("homepage")] public string Homepage { get; set; } [JsonProperty("id")] public int Id { get; set; } [JsonProperty("logo_path")] public string LogoPath { get; set; } [JsonProperty("movies")] public SearchContainer Movies { get; set; } [JsonProperty("name")] public string Name { get; set; } [JsonProperty("parent_company")] public SearchCompany ParentCompany { get; set; } [JsonProperty("origin_country")] public string OriginCountry { get; set; } } }