You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
890 B
29 lines
890 B
#pragma warning disable CS1591
|
|
|
|
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);
|
|
}
|
|
}
|