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.
44 lines
873 B
44 lines
873 B
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Enum MetadataProviders
|
|
/// </summary>
|
|
public enum MetadataProviders
|
|
{
|
|
Gamesdb,
|
|
/// <summary>
|
|
/// The imdb
|
|
/// </summary>
|
|
Imdb,
|
|
/// <summary>
|
|
/// The TMDB
|
|
/// </summary>
|
|
Tmdb,
|
|
/// <summary>
|
|
/// The TVDB
|
|
/// </summary>
|
|
Tvdb,
|
|
/// <summary>
|
|
/// The tvcom
|
|
/// </summary>
|
|
Tvcom,
|
|
/// <summary>
|
|
/// MusicBrainz
|
|
/// </summary>
|
|
Musicbrainz,
|
|
/// <summary>
|
|
/// The rotten tomatoes
|
|
/// </summary>
|
|
RottenTomatoes,
|
|
/// <summary>
|
|
/// Tmdb Collection Id
|
|
/// </summary>
|
|
TmdbCollection,
|
|
MusicBrainzReleaseGroup,
|
|
Zap2It,
|
|
NesBox,
|
|
NesBoxRom
|
|
}
|
|
}
|