Files
BetterLyrics/BetterLyrics.WinUI3/BetterLyrics.WinUI3/Services/TranslationService/ITranslationService.cs
2025-12-15 14:42:11 -05:00

13 lines
343 B
C#

using BetterLyrics.WinUI3.Models;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace BetterLyrics.WinUI3.Services.TranslationService
{
public interface ITranslationService
{
Task<string> TranslateTextAsync(string text, string targetLangCode, CancellationToken token);
}
}