From c5dcaf978af918ca2d96f45b8d271bec643481d1 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 2 Sep 2013 19:17:10 -0400 Subject: [PATCH] Added Books collection type --- MediaBrowser.Model/Entities/CollectionType.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MediaBrowser.Model/Entities/CollectionType.cs b/MediaBrowser.Model/Entities/CollectionType.cs index 60509567e0..87cb336d99 100644 --- a/MediaBrowser.Model/Entities/CollectionType.cs +++ b/MediaBrowser.Model/Entities/CollectionType.cs @@ -18,5 +18,7 @@ namespace MediaBrowser.Model.Entities public const string BoxSets = "boxsets"; public const string AdultVideos = "adultvideos"; + + public const string Books = "books"; } }