mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-04 01:44:17 +02:00
15 lines
520 B
C#
15 lines
520 B
C#
using API.Schema.NotificationsContext;
|
|
|
|
namespace API.Workers;
|
|
|
|
public class SendNotificationsWorker(IServiceScope scope, IEnumerable<BaseWorker>? dependsOn = null)
|
|
: BaseWorkerWithContext<NotificationsContext>(scope, dependsOn), IPeriodic<SendNotificationsWorker>
|
|
{
|
|
public DateTime LastExecution { get; set; } = DateTime.UtcNow;
|
|
public TimeSpan Interval { get; set; } = TimeSpan.FromMinutes(1);
|
|
protected override BaseWorker[] DoWorkInternal()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
} |