diff options
| author | Cody Robibero <cody@robibe.ro> | 2020-06-26 08:41:21 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-26 08:41:21 -0600 |
| commit | 5f1b1dc3cc01abcd52155144cb3d9a791ee655fa (patch) | |
| tree | 0b141f806371f20d2cd041a4e84230cc455b05bf | |
| parent | 0e9164351b80b532b96fbf4edf98dbd483141183 (diff) | |
fix nullability
| -rw-r--r-- | MediaBrowser.Model/Providers/ExternalIdInfo.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Providers/ExternalIdInfo.cs b/MediaBrowser.Model/Providers/ExternalIdInfo.cs index 7687e676f..01784554f 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). /// </summary> // TODO: This should be renamed to ProviderName - public string Name { get; set; } + public string? Name { get; set; } /// <summary> /// Gets or sets the unique key for this id. This key should be unique across all providers. /// </summary> // 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; } /// <summary> /// 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 /// <summary> /// Gets or sets the URL format string. /// </summary> - public string UrlFormatString { get; set; } + public string? UrlFormatString { get; set; } } } |
