11 lines
270 B
C#
11 lines
270 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JobTrackerApi.Services.JobImport.Translation;
|
|
|
|
public interface ITranslationService
|
|
{
|
|
Task<string?> TranslateToEnglishAsync(string text, string sourceLanguage, CancellationToken cancellationToken);
|
|
}
|
|
|