using MediaBrowser.Model.Plugins;
namespace MediaBrowser.Providers.Plugins.Tmdb
{
///
/// Plugin configuration class for TMDb library.
///
public class PluginConfiguration : BasePluginConfiguration
{
///
/// Gets or sets a value indicating whether include adult content when searching with TMDb.
///
public bool IncludeAdult { get; set; }
///
/// Gets or sets a value indicating whether tags should be imported for series from TMDb.
///
public bool ExcludeTagsSeries { get; set; }
///
/// Gets or sets a value indicating whether tags should be imported for movies from TMDb.
///
public bool ExcludeTagsMovies { get; set; }
}
}