using Microsoft.Extensions.Options; namespace Indotalent.Infrastructure.BackgroundJob; public class BackgroundJobService(IOptions options) { private readonly BackgroundJobSettingsModel _settings = options.Value; public BackgroundJobSettingsModel GetConfiguration() => _settings; }