onebeyond/onebeyond-studio-core

View on GitHub
src/OneBeyond.Studio.Hosting/BackgroundServices/BackgroundServiceHostOptions.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Autofac;

namespace OneBeyond.Studio.Hosting.BackgroundServices;

internal sealed record BackgroundServiceHostOptions<TBackgroundService>
    where TBackgroundService : IBackgroundService
{
    public Action<ContainerBuilder>? ConfigureServices { get; init; }
}