mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-29 00:00:17 -05:00
(cherry picked from commit 58609795007d4a5e4d9e94e92f7c82999ad8ad0a) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
17 lines
291 B
C#
17 lines
291 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
public enum CollectionTypeOptions
|
|
{
|
|
Movies = 0,
|
|
TvShows = 1,
|
|
Music = 2,
|
|
MusicVideos = 3,
|
|
HomeVideos = 4,
|
|
BoxSets = 5,
|
|
Books = 6,
|
|
Mixed = 7
|
|
}
|
|
}
|