6 lines
184 B
C#
6 lines
184 B
C#
|
namespace Mixonomer.Playlist;
|
||
|
|
||
|
public interface IRecommend
|
||
|
{
|
||
|
Task<IEnumerable<CommonTrack>> GetRecommendations(Fire.Playlist playlist, IEnumerable<CommonTrack> currentTrackList);
|
||
|
}
|