aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/CollectionType.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-12 15:56:40 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-12 15:56:40 -0400
commitdab5003d6bba57c27f4111653b36d39862b5b6fd (patch)
treebdf7462c3718eb729f71b1245c3f651b016e8412 /MediaBrowser.Model/Entities/CollectionType.cs
parent3370fb072e71ad93c540d50d859d6cbe85552735 (diff)
added collection type
Diffstat (limited to 'MediaBrowser.Model/Entities/CollectionType.cs')
-rw-r--r--MediaBrowser.Model/Entities/CollectionType.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/CollectionType.cs b/MediaBrowser.Model/Entities/CollectionType.cs
new file mode 100644
index 000000000..6d3a73aae
--- /dev/null
+++ b/MediaBrowser.Model/Entities/CollectionType.cs
@@ -0,0 +1,20 @@
+
+namespace MediaBrowser.Model.Entities
+{
+ public static class CollectionType
+ {
+ public const string Movies = "movies";
+
+ public const string TvShows = "tvshows";
+
+ public const string Music = "music";
+
+ public const string MusicVideos = "musicvideos";
+
+ public const string Trailers = "trailers";
+
+ public const string HomeVideos = "homevideos";
+
+ public const string BoxSets = "boxsets";
+ }
+}