diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-10-26 13:56:30 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-10-26 13:56:30 +0200 |
| commit | 1b6eb2ff2d2cc3973fa529c721cf50e3ad849646 (patch) | |
| tree | fe57e9cabc1553d04b2897367e98ccb9b143ff89 /MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs | |
| parent | dc72d90703eab626f5241755251fa97c9b854604 (diff) | |
Enable nullable for more files
Diffstat (limited to 'MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs b/MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs index 8ad070dcb..07129d715 100644 --- a/MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs +++ b/MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs @@ -1,4 +1,3 @@ -#nullable disable #pragma warning disable CS1591 namespace MediaBrowser.Model.Configuration @@ -13,7 +12,7 @@ namespace MediaBrowser.Model.Configuration EnablePathSubstitution = true; } - public string UserId { get; set; } + public string? UserId { get; set; } public string ReleaseDateFormat { get; set; } |
