Refactored Indexer models

This commit is contained in:
2025-08-31 00:11:05 +02:00
parent 8a3be8dd90
commit 2a75daee07
16 changed files with 591 additions and 591 deletions

10
src/Indexer/ActionJob.cs Normal file
View File

@@ -0,0 +1,10 @@
using Quartz;
public class ActionJob : IJob
{
public Task Execute(IJobExecutionContext context)
{
var action = (Action)context.MergedJobDataMap["action"];
action?.Invoke();
return Task.CompletedTask;
}
}