namespace MediaBrowser.Model.Entities { /// /// Enum MetadataProviders. /// public enum MetadataProvider { /// /// This metadata provider is for users and/or plugins to override the /// default merging behaviour. /// Custom = 0, /// /// The IMDb provider. /// Imdb = 2, /// /// The TMDb provider. /// Tmdb = 3, /// /// The TVDb provider. /// Tvdb = 4, /// /// The tvcom providerd. /// Tvcom = 5, /// /// TMDb collection provider. /// TmdbCollection = 7, /// /// The MusicBrainz album provider. /// MusicBrainzAlbum = 8, /// /// The MusicBrainz album artist provider. /// MusicBrainzAlbumArtist = 9, /// /// The MusicBrainz artist provider. /// MusicBrainzArtist = 10, /// /// The MusicBrainz release group provider. /// MusicBrainzReleaseGroup = 11, /// /// The Zap2It provider. /// Zap2It = 12, /// /// The TvRage provider. /// TvRage = 15, /// /// The AudioDb artist provider. /// AudioDbArtist = 16, /// /// The AudioDb collection provider. /// AudioDbAlbum = 17, /// /// The MusicBrainz track provider. /// MusicBrainzTrack = 18, /// /// The TvMaze provider. /// TvMaze = 19 } }