PersonSearchResult.cs 866 B

1234567891011121314151617181920212223242526272829
  1. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Search
  2. {
  3. public class PersonSearchResult
  4. {
  5. /// <summary>
  6. /// Gets or sets a value indicating whether this <see cref="PersonSearchResult" /> is adult.
  7. /// </summary>
  8. /// <value><c>true</c> if adult; otherwise, <c>false</c>.</value>
  9. public bool Adult { get; set; }
  10. /// <summary>
  11. /// Gets or sets the id.
  12. /// </summary>
  13. /// <value>The id.</value>
  14. public int Id { get; set; }
  15. /// <summary>
  16. /// Gets or sets the name.
  17. /// </summary>
  18. /// <value>The name.</value>
  19. public string Name { get; set; }
  20. /// <summary>
  21. /// Gets or sets the profile_ path.
  22. /// </summary>
  23. /// <value>The profile_ path.</value>
  24. public string Profile_Path { get; set; }
  25. }
  26. }