Files
lux/EgwCoreLib.Lux.Core/Stats/StatsRealtimeDto.cs
T
Samuele Locatelli 1a69f94c81 update realtime stats
2025-12-15 17:30:36 +01:00

18 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwCoreLib.Lux.Core.Stats
{
public class StatsRealtimeDto
{
public long RequestsLastMinute { get; set; }
public long RequestsLastHour { get; set; }
public double ProcessingAvgLastHour { get; set; }
public double ProcessingMaxLastHour { get; set; }
}
}