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