mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-05 06:50:41 +00:00
10 lines
292 B
C#
10 lines
292 B
C#
namespace ZonyLrcTools.Common.Lyrics;
|
|
|
|
public interface ILyricsDownloader
|
|
{
|
|
Task DownloadAsync(List<MusicInfo> needDownloadMusicInfos,
|
|
int parallelCount = 2,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
IEnumerable<ILyricsProvider> AvailableProviders { get; }
|
|
} |