aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MetadataProvider.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-04-15 19:27:38 +0200
committerShadowghost <Ghost_of_Stone@web.de>2022-11-17 11:16:20 +0100
commit072651c4be3914f0ffb5e0be8f57e714d4303fe1 (patch)
tree6ac01ca4f929407e821311e5ffd83c6cc7c30f00 /MediaBrowser.Model/Entities/MetadataProvider.cs
parentf4ab56e12acd8c45dbb04cde93d24db37884bbfe (diff)
Add xmldocs for TMDb provider, correct provider spelling
Diffstat (limited to 'MediaBrowser.Model/Entities/MetadataProvider.cs')
-rw-r--r--MediaBrowser.Model/Entities/MetadataProvider.cs52
1 files changed, 45 insertions, 7 deletions
diff --git a/MediaBrowser.Model/Entities/MetadataProvider.cs b/MediaBrowser.Model/Entities/MetadataProvider.cs
index 37e3d8864..a34bbd3c8 100644
--- a/MediaBrowser.Model/Entities/MetadataProvider.cs
+++ b/MediaBrowser.Model/Entities/MetadataProvider.cs
@@ -1,5 +1,3 @@
-#pragma warning disable CS1591
-
namespace MediaBrowser.Model.Entities
{
/// <summary>
@@ -14,38 +12,78 @@ namespace MediaBrowser.Model.Entities
Custom = 0,
/// <summary>
- /// The imdb.
+ /// The IMDb id.
/// </summary>
Imdb = 2,
/// <summary>
- /// The TMDB.
+ /// The TMDb id.
/// </summary>
Tmdb = 3,
/// <summary>
- /// The TVDB.
+ /// The TVDb id.
/// </summary>
Tvdb = 4,
/// <summary>
- /// The tvcom.
+ /// The tvcom id.
/// </summary>
Tvcom = 5,
/// <summary>
- /// Tmdb Collection Id.
+ /// TMDb collection id.
/// </summary>
TmdbCollection = 7,
+
+ /// <summary>
+ /// The MusicBrainz album id.
+ /// </summary>
MusicBrainzAlbum = 8,
+
+ /// <summary>
+ /// The MusicBrainz album artist id.
+ /// </summary>
MusicBrainzAlbumArtist = 9,
+
+ /// <summary>
+ /// The MusicBrainz artist id.
+ /// </summary>
MusicBrainzArtist = 10,
+
+ /// <summary>
+ /// The MusicBrainz release group id.
+ /// </summary>
MusicBrainzReleaseGroup = 11,
+
+ /// <summary>
+ /// The Zap2It id.
+ /// </summary>
Zap2It = 12,
+
+ /// <summary>
+ /// The TvRage id.
+ /// </summary>
TvRage = 15,
+
+ /// <summary>
+ /// The AudioDb artist id.
+ /// </summary>
AudioDbArtist = 16,
+
+ /// <summary>
+ /// The AudioDb collection id.
+ /// </summary>
AudioDbAlbum = 17,
+
+ /// <summary>
+ /// The MusicBrainz track id.
+ /// </summary>
MusicBrainzTrack = 18,
+
+ /// <summary>
+ /// The TvMaze id.
+ /// </summary>
TvMaze = 19
}
}