aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MediaType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/MediaType.cs')
-rw-r--r--MediaBrowser.Model/Entities/MediaType.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/MediaType.cs b/MediaBrowser.Model/Entities/MediaType.cs
new file mode 100644
index 000000000..0c9bde6fb
--- /dev/null
+++ b/MediaBrowser.Model/Entities/MediaType.cs
@@ -0,0 +1,30 @@
+
+namespace MediaBrowser.Model.Entities
+{
+ /// <summary>
+ /// Class MediaType
+ /// </summary>
+ public class MediaType
+ {
+ /// <summary>
+ /// The video
+ /// </summary>
+ public const string Video = "Video";
+ /// <summary>
+ /// The audio
+ /// </summary>
+ public const string Audio = "Audio";
+ /// <summary>
+ /// The game
+ /// </summary>
+ public const string Game = "Game";
+ /// <summary>
+ /// The photo
+ /// </summary>
+ public const string Photo = "Photo";
+ /// <summary>
+ /// The book
+ /// </summary>
+ public const string Book = "Book";
+ }
+}