using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace MP.MONO.Core.DTO
{
///
/// Array valori per analisi pareto
///
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;
}
}