mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-09-05 21:16:52 +00:00
10 lines
289 B
C#
10 lines
289 B
C#
namespace ZonyLrcTools.Common.Album;
|
|
|
|
public interface IAlbumDownloader
|
|
{
|
|
Task DownloadAsync(List<MusicInfo> needDownloadMusicInfos,
|
|
int parallelCount = 2,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
IEnumerable<IAlbumProvider> AvailableProviders { get; }
|
|
} |