mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-22 11:06:41 -04:00
15 lines
363 B
C#
15 lines
363 B
C#
namespace Cleanuparr.Infrastructure.Stats;
|
|
|
|
public class StatsResponse
|
|
{
|
|
public EventStats Events { get; set; } = new();
|
|
|
|
public StrikeStats Strikes { get; set; } = new();
|
|
|
|
public JobStats Jobs { get; set; } = new();
|
|
|
|
public HealthStats Health { get; set; } = new();
|
|
|
|
public DateTimeOffset GeneratedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
}
|