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.
31 lines
571 B
31 lines
571 B
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Enum MetadataProviders
|
|
/// </summary>
|
|
public enum MetadataProviders
|
|
{
|
|
/// <summary>
|
|
/// The imdb
|
|
/// </summary>
|
|
Imdb,
|
|
/// <summary>
|
|
/// The TMDB
|
|
/// </summary>
|
|
Tmdb,
|
|
/// <summary>
|
|
/// The TVDB
|
|
/// </summary>
|
|
Tvdb,
|
|
/// <summary>
|
|
/// The tvcom
|
|
/// </summary>
|
|
Tvcom,
|
|
/// <summary>
|
|
/// MusicBrainz
|
|
/// </summary>
|
|
Musicbrainz
|
|
}
|
|
}
|