diff options
| author | Rich Lander <rlander@microsoft.com> | 2021-07-24 10:58:50 -0700 |
|---|---|---|
| committer | Rich Lander <rlander@microsoft.com> | 2021-07-24 10:58:50 -0700 |
| commit | 5920f68ca93e230dbced152a5aaac65eccb97ecd (patch) | |
| tree | 8441fa8e180cc5667eba203ba91cb6ed905c61d3 /MediaBrowser.Controller/Library/IMusicManager.cs | |
| parent | 5a9bd712b34c0c01e82a9ce6c7c1e273044e6986 (diff) | |
Fix warnings in MediaBrowser.Controller/Library
Diffstat (limited to 'MediaBrowser.Controller/Library/IMusicManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IMusicManager.cs | 14 |
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); } } |
