2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
namespace MediaBrowser.Model.Entities
|
2018-12-27 23:27:57 +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";
|
|
|
|
|
|
|
|
public const string Books = "books";
|
|
|
|
public const string Photos = "photos";
|
|
|
|
public const string LiveTv = "livetv";
|
|
|
|
public const string Playlists = "playlists";
|
|
|
|
public const string Folders = "folders";
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|