aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/CollectionTypeOptions.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-02-24 22:02:47 +0100
committerGitHub <noreply@github.com>2021-02-24 22:02:47 +0100
commit58609795007d4a5e4d9e94e92f7c82999ad8ad0a (patch)
tree4397da12af7c90f6d7b966fe6a9c9e499d6e9755 /MediaBrowser.Model/Entities/CollectionTypeOptions.cs
parent1569cc301cae443c49e65cb316162cc4bd5863e5 (diff)
parent81f527f8083289ce8eab77d522f51f06c3a5a70c (diff)
Merge pull request #5301 from Bond-009/validinput
Diffstat (limited to 'MediaBrowser.Model/Entities/CollectionTypeOptions.cs')
-rw-r--r--MediaBrowser.Model/Entities/CollectionTypeOptions.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/CollectionTypeOptions.cs b/MediaBrowser.Model/Entities/CollectionTypeOptions.cs
new file mode 100644
index 000000000..e1894d84a
--- /dev/null
+++ b/MediaBrowser.Model/Entities/CollectionTypeOptions.cs
@@ -0,0 +1,16 @@
+#pragma warning disable CS1591
+
+namespace MediaBrowser.Model.Entities
+{
+ public enum CollectionTypeOptions
+ {
+ Movies = 0,
+ TvShows = 1,
+ Music = 2,
+ MusicVideos = 3,
+ HomeVideos = 4,
+ BoxSets = 5,
+ Books = 6,
+ Mixed = 7
+ }
+}