You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
831 B
24 lines
831 B
5 years ago
|
using System.Collections.Generic;
|
||
|
using MediaBrowser.Providers.Tmdb.Models.General;
|
||
|
|
||
|
namespace MediaBrowser.Providers.Tmdb.Models.People
|
||
|
{
|
||
|
public class PersonResult
|
||
|
{
|
||
|
public bool adult { get; set; }
|
||
|
public List<string> also_known_as { get; set; }
|
||
|
public string biography { get; set; }
|
||
|
public string birthday { get; set; }
|
||
|
public string deathday { get; set; }
|
||
|
public string homepage { get; set; }
|
||
|
public int id { get; set; }
|
||
|
public string imdb_id { get; set; }
|
||
|
public string name { get; set; }
|
||
|
public string place_of_birth { get; set; }
|
||
|
public double popularity { get; set; }
|
||
|
public string profile_path { get; set; }
|
||
|
public PersonImages images { get; set; }
|
||
|
public ExternalIds external_ids { get; set; }
|
||
|
}
|
||
|
}
|