Files
blazor-cms/Infrastructure/BackgroundJob/BackgroundJobService.cs
T
2026-07-21 13:52:43 +07:00

11 lines
323 B
C#

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