using MediaBrowser.Model.Plugins; namespace MediaBrowser.Providers.Plugins.Tmdb { /// /// Plugin configuration class for TMDb library. /// public class PluginConfiguration : BasePluginConfiguration { /// /// Gets or sets a value to use as the API key for accessing TMDb. This is intentionally excluded from the /// settings page as the API key should not need to be changed by most users. /// public string TmdbApiKey { get; set; } = string.Empty; /// /// 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; } /// /// Gets or sets a value indicating whether season name should be imported from TMDb. /// public bool ImportSeasonName { get; set; } /// /// Gets or sets a value indicating the maximum number of cast members to fetch for an item. /// public int MaxCastMembers { get; set; } = 15; /// /// Gets or sets a value indicating the poster image size to fetch. /// public string? PosterSize { get; set; } /// /// Gets or sets a value indicating the backdrop image size to fetch. /// public string? BackdropSize { get; set; } /// /// Gets or sets a value indicating the logo image size to fetch. /// public string? LogoSize { get; set; } /// /// Gets or sets a value indicating the profile image size to fetch. /// public string? ProfileSize { get; set; } /// /// Gets or sets a value indicating the still image size to fetch. /// public string? StillSize { get; set; } } }