PluginConfiguration.cs 834 B

12345678910111213141516171819202122232425
  1. using MediaBrowser.Model.Plugins;
  2. namespace MediaBrowser.Providers.Plugins.Tmdb
  3. {
  4. /// <summary>
  5. /// Plugin configuration class for TMDb library.
  6. /// </summary>
  7. public class PluginConfiguration : BasePluginConfiguration
  8. {
  9. /// <summary>
  10. /// Gets or sets a value indicating whether include adult content when searching with TMDb.
  11. /// </summary>
  12. public bool IncludeAdult { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether tags should be imported for series from TMDb.
  15. /// </summary>
  16. public bool ExcludeTagsSeries { get; set; }
  17. /// <summary>
  18. /// Gets or sets a value indicating whether tags should be imported for movies from TMDb.
  19. /// </summary>
  20. public bool ExcludeTagsMovies { get; set; }
  21. }
  22. }