cb8a707304
- aggiunta differenziazione modalità BankBit (attuale) + RawList - aggiunte tab anagrafica allarmi + rec x singolo evento/stato - aggiunta migration DB x nuove tab
26 lines
741 B
C#
26 lines
741 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
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 MP.MONO.Core.DTO
|
|
{
|
|
/// <summary>
|
|
/// Array valori per analisi pareto
|
|
/// </summary>
|
|
public class AlarmStatsDTO
|
|
{
|
|
public string Code { get; set; } = "0000";
|
|
public string Description { get; set; } = "";
|
|
public int EventCount { get; set; } = 1;
|
|
public double DurationTotal { get; set; } = 0;
|
|
public double DurationAvg { get; set; } = 0;
|
|
public double DurationMin { get; set; } = 0;
|
|
public double DurationMax { get; set; } = 0;
|
|
}
|
|
}
|