aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MetadataProviders.cs
blob: b508be13b28e2025e57d9a6a703b38f0d32ff103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
    }
}