using System.Threading; using System.Threading.Tasks; namespace JobTrackerApi.Services.JobImport.Translation; public sealed class NoOpTranslationService : ITranslationService { public Task TranslateToEnglishAsync(string text, string sourceLanguage, CancellationToken cancellationToken) => Task.FromResult(null); }