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