You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1005 B
46 lines
1005 B
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Enum MetadataProviders
|
|
/// </summary>
|
|
public enum MetadataProviders
|
|
{
|
|
Gamesdb = 1,
|
|
/// <summary>
|
|
/// The imdb
|
|
/// </summary>
|
|
Imdb = 2,
|
|
/// <summary>
|
|
/// The TMDB
|
|
/// </summary>
|
|
Tmdb = 3,
|
|
/// <summary>
|
|
/// The TVDB
|
|
/// </summary>
|
|
Tvdb = 4,
|
|
/// <summary>
|
|
/// The tvcom
|
|
/// </summary>
|
|
Tvcom = 5,
|
|
/// <summary>
|
|
/// The rotten tomatoes
|
|
/// </summary>
|
|
RottenTomatoes = 6,
|
|
/// <summary>
|
|
/// Tmdb Collection Id
|
|
/// </summary>
|
|
TmdbCollection = 7,
|
|
MusicBrainzAlbum = 8,
|
|
MusicBrainzAlbumArtist = 9,
|
|
MusicBrainzArtist = 10,
|
|
MusicBrainzReleaseGroup = 11,
|
|
Zap2It = 12,
|
|
NesBox = 13,
|
|
NesBoxRom = 14,
|
|
TvRage = 15,
|
|
AudioDbArtist = 16,
|
|
AudioDbAlbum = 17
|
|
}
|
|
}
|