diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-02-24 11:57:04 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-02-24 11:57:04 +0100 |
| commit | 81f527f8083289ce8eab77d522f51f06c3a5a70c (patch) | |
| tree | 6fd9f9cf61c8b0e0257f9ad6f9a6822bb50fcf1f /MediaBrowser.Model/Entities/VirtualFolderInfo.cs | |
| parent | 1c74e2f40e6790621ebc06dd37083a29be2459bd (diff) | |
CollectionType can be null
Diffstat (limited to 'MediaBrowser.Model/Entities/VirtualFolderInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/VirtualFolderInfo.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Entities/VirtualFolderInfo.cs b/MediaBrowser.Model/Entities/VirtualFolderInfo.cs index 55879b2e0..ea3df3726 100644 --- a/MediaBrowser.Model/Entities/VirtualFolderInfo.cs +++ b/MediaBrowser.Model/Entities/VirtualFolderInfo.cs @@ -35,7 +35,7 @@ namespace MediaBrowser.Model.Entities /// Gets or sets the type of the collection. /// </summary> /// <value>The type of the collection.</value> - public CollectionTypeOptions CollectionType { get; set; } + public CollectionTypeOptions? CollectionType { get; set; } public LibraryOptions LibraryOptions { get; set; } |
