mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-09-05 13:07:26 +00:00
12 lines
376 B
C#
12 lines
376 B
C#
namespace ZonyLrcTools.Common;
|
|
|
|
public interface IMusicInfoLoader
|
|
{
|
|
Task<List<MusicInfo?>> LoadAsync(string dirPath,
|
|
int parallelCount = 2,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
Task<List<MusicInfo?>> LoadAsync(IReadOnlyCollection<string> filePaths,
|
|
int parallelCount = 2,
|
|
CancellationToken cancellationToken = default);
|
|
} |