mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 18:14:42 +01:00
Fix build
This commit is contained in:
@@ -4,12 +4,13 @@ namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
public enum CollectionTypeOptions
|
||||
{
|
||||
Movies,
|
||||
Music,
|
||||
TvShows,
|
||||
Books,
|
||||
HomeVideos,
|
||||
MusicVideos,
|
||||
Mixed
|
||||
Movies = 0,
|
||||
TvShows = 1,
|
||||
Music = 2,
|
||||
MusicVideos = 3,
|
||||
HomeVideos = 4,
|
||||
BoxSets = 5,
|
||||
Books = 6,
|
||||
Mixed = 7
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace MediaBrowser.Model.Entities
|
||||
/// Gets or sets the type of the collection.
|
||||
/// </summary>
|
||||
/// <value>The type of the collection.</value>
|
||||
public string CollectionType { get; set; }
|
||||
public CollectionTypeOptions CollectionType { get; set; }
|
||||
|
||||
public LibraryOptions LibraryOptions { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user