DD.WellWorkover.Cloud/AsbCloudInfrastructure/Background/NotificationBackgroundWorker.cs

10 lines
232 B
C#

using System;
namespace AsbCloudInfrastructure.Background;
public class NotificationBackgroundWorker : BackgroundWorker
{
public NotificationBackgroundWorker(IServiceProvider serviceProvider) : base(serviceProvider)
{
}
}