Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/CollectionType.cs

33 lines
992 B
C#
Raw Normal View History

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