2014-03-30 16:49:40 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
|
using System.Collections.Generic;
|
2017-05-21 07:25:49 +00:00
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2014-03-30 16:49:40 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
|
|
|
{
|
|
|
|
|
public interface IMusicManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the instant mix from song.
|
|
|
|
|
/// </summary>
|
2017-05-21 07:25:49 +00:00
|
|
|
|
IEnumerable<Audio> GetInstantMixFromItem(BaseItem item, User user, DtoOptions dtoOptions);
|
|
|
|
|
|
2014-03-30 16:49:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the instant mix from artist.
|
|
|
|
|
/// </summary>
|
2017-05-21 07:25:49 +00:00
|
|
|
|
IEnumerable<Audio> GetInstantMixFromArtist(MusicArtist artist, User user, DtoOptions dtoOptions);
|
|
|
|
|
|
2014-03-30 16:49:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the instant mix from genre.
|
|
|
|
|
/// </summary>
|
2017-05-21 07:25:49 +00:00
|
|
|
|
IEnumerable<Audio> GetInstantMixFromGenres(IEnumerable<string> genres, User user, DtoOptions dtoOptions);
|
2014-03-30 16:49:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|