mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			828 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			828 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
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);
 | 
						|
    }
 | 
						|
}
 |