mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-16 15:32:11 -04:00
9 lines
189 B
C#
9 lines
189 B
C#
namespace Cleanuparr.Infrastructure.Stats;
|
|
|
|
public class JobStats
|
|
{
|
|
public Dictionary<string, JobTypeStats> ByType { get; set; } = new();
|
|
|
|
public int TimeframeHours { get; set; }
|
|
}
|