Added hangfire. Implemented hangfire statistics. Updated lucide icons

This commit is contained in:
2025-04-09 20:24:31 +02:00
parent 7fa46ef245
commit 55bc825cb7
12 changed files with 1157 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
namespace Moonlight.Shared.Http.Responses.Admin.Hangfire;
public class HangfireStatsResponse
{
public long Servers { get; set; }
public long Recurring { get; set; }
public long Enqueued { get; set; }
public long Queues { get; set; }
public long Scheduled { get; set; }
public long Processing { get; set; }
public long Succeeded { get; set; }
public long Failed { get; set; }
public long Deleted { get; set; }
public long? Retries { get; set; }
public long? Awaiting { get; set; }
}