aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/CollectionType.cs
blob: a97cc3b1203caa18eb72e7d729b4ae3205bc3d60 (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
29
30
31
32
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";
        public const string Folders = "folders";

        public const string LiveTvChannels = "LiveTvChannels";
        public const string LiveTvRecordingGroups = "LiveTvRecordingGroups";
    }
}