PersonResult.cs 847 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
  3. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.People
  4. {
  5. public class PersonResult
  6. {
  7. public bool Adult { get; set; }
  8. public List<string> Also_Known_As { get; set; }
  9. public string Biography { get; set; }
  10. public string Birthday { get; set; }
  11. public string Deathday { get; set; }
  12. public string Homepage { get; set; }
  13. public int Id { get; set; }
  14. public string Imdb_Id { get; set; }
  15. public string Name { get; set; }
  16. public string Place_Of_Birth { get; set; }
  17. public double Popularity { get; set; }
  18. public string Profile_Path { get; set; }
  19. public PersonImages Images { get; set; }
  20. public ExternalIds External_Ids { get; set; }
  21. }
  22. }