mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
- Add album text in lyrics render - Improve song info update and draw algo - Upgrade to .NET 10
15 lines
437 B
C#
15 lines
437 B
C#
using BetterLyrics.WinUI3.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Services.TranslateService
|
|
{
|
|
public interface ITranslateService
|
|
{
|
|
Task<string> TranslateTextAsync(string text, string targetLangCode, CancellationToken token);
|
|
|
|
int SearchTranslatedLyricsItself(List<LyricsData> lyricsDataArr, string targetLangCode);
|
|
}
|
|
}
|