2013-07-12 19:56:40 +00:00
|
|
|
|
|
|
|
|
|
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";
|
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";
|
2013-07-12 19:56:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|