aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-21 11:35:49 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-21 11:35:49 -0400
commit9b6e0c88f268fb681b426a88109620b81cb60df0 (patch)
tree85966f0aa045c3baae19b3a4f78501d995891b54
parent43c9ab9cdca7671ef23e8ec5e66e00f5425ca0c2 (diff)
add new media types
-rw-r--r--MediaBrowser.Model/Entities/MediaType.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/MediaType.cs b/MediaBrowser.Model/Entities/MediaType.cs
index 7a5f4c3c9..0c9bde6fb 100644
--- a/MediaBrowser.Model/Entities/MediaType.cs
+++ b/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";
}
}