aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-02-24 02:34:50 +0100
committerBond_009 <bond.009@outlook.com>2021-02-24 02:57:10 +0100
commit1c74e2f40e6790621ebc06dd37083a29be2459bd (patch)
tree0789c05d4ac224b2197bed7dc9564b98a23b3ad6 /MediaBrowser.Model/Entities
parent914e891689af38911332d14b18b4a1b4834cd9ae (diff)
Fix build
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/CollectionTypeOptions.cs15
-rw-r--r--MediaBrowser.Model/Entities/VirtualFolderInfo.cs2
2 files changed, 9 insertions, 8 deletions
diff --git a/MediaBrowser.Model/Entities/CollectionTypeOptions.cs b/MediaBrowser.Model/Entities/CollectionTypeOptions.cs
index d7615a7ed..e1894d84a 100644
--- a/MediaBrowser.Model/Entities/CollectionTypeOptions.cs
+++ b/MediaBrowser.Model/Entities/CollectionTypeOptions.cs
@@ -4,12 +4,13 @@ namespace MediaBrowser.Model.Entities
{
public enum CollectionTypeOptions
{
- Movies,
- Music,
- TvShows,
- Books,
- HomeVideos,
- MusicVideos,
- Mixed
+ Movies = 0,
+ TvShows = 1,
+ Music = 2,
+ MusicVideos = 3,
+ HomeVideos = 4,
+ BoxSets = 5,
+ Books = 6,
+ Mixed = 7
}
}
diff --git a/MediaBrowser.Model/Entities/VirtualFolderInfo.cs b/MediaBrowser.Model/Entities/VirtualFolderInfo.cs
index 1b0e59240..55879b2e0 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 string CollectionType { get; set; }
+ public CollectionTypeOptions CollectionType { get; set; }
public LibraryOptions LibraryOptions { get; set; }