Files
jobtrackingapp/JobTrackerApi/Services/JobImport/Translation/ITranslationService.cs
2026-03-21 11:55:27 +01:00

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);
}