18 lines
456 B
C#
18 lines
456 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 StatsRangeDto
|
|
{
|
|
public List<string> HourLabels { get; set; } = new();
|
|
public List<double> Requests { get; set; } = new();
|
|
public List<double> AvgProcessing { get; set; } = new();
|
|
public List<double> MaxProcessing { get; set; } = new();
|
|
}
|
|
|
|
}
|