diff --git a/MediaBrowser.Model/Entities/MediaType.cs b/MediaBrowser.Model/Entities/MediaType.cs index 7a5f4c3c91..0c9bde6fb6 100644 --- a/MediaBrowser.Model/Entities/MediaType.cs +++ b/MediaBrowser.Model/Entities/MediaType.cs @@ -18,5 +18,13 @@ namespace MediaBrowser.Model.Entities /// The game /// public const string Game = "Game"; + /// + /// The photo + /// + public const string Photo = "Photo"; + /// + /// The book + /// + public const string Book = "Book"; } }