mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
15 lines
395 B
C#
15 lines
395 B
C#
// 2025/6/23 by Zhe Fang
|
|
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BetterLyrics.WinUI3.Enums;
|
|
|
|
namespace BetterLyrics.WinUI3.Services
|
|
{
|
|
public interface ILyricsSearchService
|
|
{
|
|
Task<(string?, LyricsSearchProvider?)> SearchAsync(string title, string artist, string album, double durationMs, CancellationToken token);
|
|
}
|
|
}
|