aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/CollectionType.cs
blob: 31cda8303e2975a049d95348be8dbff57476d261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace MediaBrowser.Model.Entities
{
    public static class CollectionType
    {
        public const string Movies = "movies";

        public const string TvShows = "tvshows";

        public const string Music = "music";

        public const string MusicVideos = "musicvideos";

        public const string Trailers = "trailers";

        public const string HomeVideos = "homevideos";

        public const string BoxSets = "boxsets";

        public const string AdultVideos = "adultvideos";

        public const string Books = "books";
        public const string Photos = "photos";
        public const string Games = "games";
        public const string Channels = "channels";
        public const string LiveTv = "livetv";
        public const string Playlists = "playlists";
    }
}