namespace MP.MONO.Core.DTO
{
public class RangeDTO
{
#region Public Properties
///
/// Descrizione parametro
///
public string Description { get; set; } = "";
///
/// Parametro in uscita previsto
///
public double OutVal { get; set; } = 0;
///
/// Valore massimo range
///
public double maxVal { get; set; } = 0;
///
/// Valore minimo range
///
public double minVal { get; set; } = 0;
#endregion Public Properties
}
}