feat: NetEase Cloud Music Downloader support dual language lyrics.

This commit is contained in:
real-zony
2022-03-19 11:38:10 +08:00
parent c380fd83f6
commit 2c2c34f1a6
6 changed files with 57 additions and 11 deletions

View File

@@ -11,5 +11,13 @@ namespace ZonyLrcTools.Cli.Infrastructure.Lyric
/// <param name="sourceLyric">原始歌词数据。</param>
/// <returns>构建完成的 <see cref="LyricItemCollection"/> 对象。</returns>
LyricItemCollection Build(string sourceLyric);
/// <summary>
/// 根据指定的歌曲数据构建新的 <see cref="LyricItemCollection"/> 实例。
/// </summary>
/// <param name="sourceLyric">原始歌词数据。</param>
/// <param name="translationLyric">翻译歌词数据。</param>
/// <returns>构建完成的 <see cref="LyricItemCollection"/> 对象。</returns>
LyricItemCollection Build(string sourceLyric, string translationLyric);
}
}