mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
27 lines
858 B
C#
27 lines
858 B
C#
using System.Collections.Generic;
|
|
using Jellyfin.Data.Entities;
|
|
using MediaBrowser.Controller.Dto;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
public interface IMusicManager
|
|
{
|
|
/// <summary>
|
|
/// Gets the instant mix from song.
|
|
/// </summary>
|
|
List<BaseItem> GetInstantMixFromItem(BaseItem item, User user, DtoOptions dtoOptions);
|
|
|
|
/// <summary>
|
|
/// Gets the instant mix from artist.
|
|
/// </summary>
|
|
List<BaseItem> GetInstantMixFromArtist(MusicArtist artist, User user, DtoOptions dtoOptions);
|
|
|
|
/// <summary>
|
|
/// Gets the instant mix from genre.
|
|
/// </summary>
|
|
List<BaseItem> GetInstantMixFromGenres(IEnumerable<string> genres, User user, DtoOptions dtoOptions);
|
|
}
|
|
}
|