Browse Source

add new media types

Luke Pulverenti 12 years ago
parent
commit
9b6e0c88f2
1 changed files with 8 additions and 0 deletions
  1. 8 0
      MediaBrowser.Model/Entities/MediaType.cs

+ 8 - 0
MediaBrowser.Model/Entities/MediaType.cs

@@ -18,5 +18,13 @@ namespace MediaBrowser.Model.Entities
         /// 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";
     }
 }