using System.Threading; using System.Threading.Tasks; namespace JobTrackerApi.Services.JobImport.Translation; public interface ITranslationService { Task TranslateToEnglishAsync(string text, string sourceLanguage, CancellationToken cancellationToken); }