30 lines
899 B
C#
30 lines
899 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace EgwCoreLib.Lux.Data.DbModel.Stats
|
|
{
|
|
/// <summary>
|
|
/// Classe statistiche impiego (orarie) di dettaglio (per envir/tipo)
|
|
/// </summary>
|
|
[Table("stats_detail")]
|
|
public class StatsDetail
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string Environment { get; set; } = "";
|
|
public string Type { get; set; } = "";
|
|
public DateTime Hour { get; set; }
|
|
public long RequestCount { get; set; } = 0;
|
|
public double AvgDuration { get; set; } = 0;
|
|
public double MaxDuration { get; set; } = 0;
|
|
}
|
|
}
|