2014-07-13 04:55:56 +00:00
|
|
|
|
namespace MediaBrowser.Model.Entities
|
2013-07-12 19:56:40 +00:00
|
|
|
|
{
|
|
|
|
|
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";
|
2013-07-16 18:47:05 +00:00
|
|
|
|
|
|
|
|
|
public const string AdultVideos = "adultvideos";
|
2013-09-02 23:17:10 +00:00
|
|
|
|
|
|
|
|
|
public const string Books = "books";
|
2014-06-05 02:32:40 +00:00
|
|
|
|
public const string Photos = "photos";
|
|
|
|
|
public const string Games = "games";
|
2014-06-14 23:13:09 +00:00
|
|
|
|
public const string Channels = "channels";
|
|
|
|
|
public const string LiveTv = "livetv";
|
2014-08-02 02:34:45 +00:00
|
|
|
|
public const string Playlists = "playlists";
|
2014-08-14 13:24:30 +00:00
|
|
|
|
public const string Folders = "folders";
|
|
|
|
|
|
|
|
|
|
public const string LiveTvChannels = "LiveTvChannels";
|
|
|
|
|
public const string LiveTvRecordingGroups = "LiveTvRecordingGroups";
|
2013-07-12 19:56:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|