forked from ddrilling/AsbCloudServer
10 lines
226 B
C#
10 lines
226 B
C#
|
using System;
|
||
|
|
||
|
namespace AsbCloudInfrastructure.Background;
|
||
|
|
||
|
public class NotificationBackgroundWorker : BackgroundWorker
|
||
|
{
|
||
|
public NotificationBackgroundWorker(IServiceProvider serviceProvider) : base(serviceProvider)
|
||
|
{
|
||
|
}
|
||
|
}
|