浏览代码

add new media types

Luke Pulverenti 12 年之前
父节点
当前提交
9b6e0c88f2
共有 1 个文件被更改,包括 8 次插入0 次删除
  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";
     }
 }