afd3ec34bb
- Completata procedura adv x ricalcolo FluxLog
40 lines
927 B
C#
40 lines
927 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Data
|
|
{
|
|
public class Enum
|
|
{
|
|
/// <summary>
|
|
/// Trasformazione VC da effettuare
|
|
/// </summary>
|
|
public enum ValSelection
|
|
{
|
|
/// <summary>
|
|
/// Selezione PRIMO valore del set
|
|
/// </summary>
|
|
First,
|
|
/// <summary>
|
|
/// Selezione Moda (norma) = elemento centrale
|
|
/// </summary>
|
|
Center,
|
|
/// <summary>
|
|
/// Selezione ULTIMO valore del set
|
|
/// </summary>
|
|
Last
|
|
}
|
|
/// <summary>
|
|
/// Intervallo dati (es per definizione quanti dati FluxLog tenere x intervallo
|
|
/// </summary>
|
|
public enum DataInterval
|
|
{
|
|
minute,
|
|
hour,
|
|
day
|
|
}
|
|
}
|
|
}
|