aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IMusicManager.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-08-03 17:06:25 +0200
committerGitHub <noreply@github.com>2021-08-03 17:06:25 +0200
commit008c6a843ec832ec201db5ce8ca30d2d165f2d24 (patch)
tree7821b502e219aa75d52557226c3f5900193f5d37 /MediaBrowser.Controller/Library/IMusicManager.cs
parentfc5841242e9c5a5d0c1c9369858aa5b6e8652a7d (diff)
parenta0678a92618fc1137bfc1606d26bd1a4c3749775 (diff)
Merge pull request #6342 from richlander/mediabrowser-controller-library
Diffstat (limited to 'MediaBrowser.Controller/Library/IMusicManager.cs')
-rw-r--r--MediaBrowser.Controller/Library/IMusicManager.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/IMusicManager.cs b/MediaBrowser.Controller/Library/IMusicManager.cs
index 5329841bf..ec34a868b 100644
--- a/MediaBrowser.Controller/Library/IMusicManager.cs
+++ b/MediaBrowser.Controller/Library/IMusicManager.cs
@@ -1,6 +1,6 @@
#nullable disable
-#pragma warning disable CS1591
+#pragma warning disable CA1002, CS1591
using System.Collections.Generic;
using Jellyfin.Data.Entities;
@@ -15,16 +15,28 @@ namespace MediaBrowser.Controller.Library
/// <summary>
/// Gets the instant mix from song.
/// </summary>
+ /// <param name="item">The item to use.</param>
+ /// <param name="user">The user to use.</param>
+ /// <param name="dtoOptions">The options to use.</param>
+ /// <returns>List of items.</returns>
List<BaseItem> GetInstantMixFromItem(BaseItem item, User user, DtoOptions dtoOptions);
/// <summary>
/// Gets the instant mix from artist.
/// </summary>
+ /// <param name="artist">The artist to use.</param>
+ /// <param name="user">The user to use.</param>
+ /// <param name="dtoOptions">The options to use.</param>
+ /// <returns>List of items.</returns>
List<BaseItem> GetInstantMixFromArtist(MusicArtist artist, User user, DtoOptions dtoOptions);
/// <summary>
/// Gets the instant mix from genre.
/// </summary>
+ /// <param name="genres">The genres to use.</param>
+ /// <param name="user">The user to use.</param>
+ /// <param name="dtoOptions">The options to use.</param>
+ /// <returns>List of items.</returns>
List<BaseItem> GetInstantMixFromGenres(IEnumerable<string> genres, User user, DtoOptions dtoOptions);
}
}