jellyfin/MediaBrowser.Controller/Library/IMusicManager.cs

43 lines
1.6 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CA1002, CS1591
using System.Collections.Generic;
2020-05-20 19:07:53 +02:00
using Jellyfin.Data.Entities;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Library
{
public interface IMusicManager
{
/// <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>
2020-05-20 19:07:53 +02:00
List<BaseItem> GetInstantMixFromItem(BaseItem item, User user, DtoOptions dtoOptions);
2018-12-28 00:27:57 +01:00
/// <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>
2020-05-20 19:07:53 +02:00
List<BaseItem> GetInstantMixFromArtist(MusicArtist artist, User user, DtoOptions dtoOptions);
2018-12-28 00:27:57 +01:00
/// <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>
2020-05-20 19:07:53 +02:00
List<BaseItem> GetInstantMixFromGenres(IEnumerable<string> genres, User user, DtoOptions dtoOptions);
2018-12-28 00:27:57 +01:00
}
}