diff --git a/MediaBrowser.Model/Providers/ExternalIdInfo.cs b/MediaBrowser.Model/Providers/ExternalIdInfo.cs
index 7687e676f9..01784554f9 100644
--- a/MediaBrowser.Model/Providers/ExternalIdInfo.cs
+++ b/MediaBrowser.Model/Providers/ExternalIdInfo.cs
@@ -9,13 +9,13 @@ namespace MediaBrowser.Model.Providers
/// Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc).
///
// TODO: This should be renamed to ProviderName
- public string Name { get; set; }
+ public string? Name { get; set; }
///
/// Gets or sets the unique key for this id. This key should be unique across all providers.
///
// TODO: This property is not actually unique across the concrete types at the moment. It should be updated to be unique.
- public string Key { get; set; }
+ public string? Key { get; set; }
///
/// Gets or sets the specific media type for this id. This is used to distinguish between the different
@@ -31,6 +31,6 @@ namespace MediaBrowser.Model.Providers
///
/// Gets or sets the URL format string.
///
- public string UrlFormatString { get; set; }
+ public string? UrlFormatString { get; set; }
}
}