18 lines
427 B
C#
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; }
|
|
}
|
|
|
|
}
|