using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IOB_WIN { public class Objects { } /// /// Classe di estensione x oggetti DataItems con struttura e valori /// public class MtcDataItemExt : MTConnect.MTConnectDevices.DataItem { /// /// UUID univoco dell'oggetto --> flusso /// public string uid { get; set; } = ""; /// /// Valore Registrato in formato stringa /// public string value { get; set; } = ""; /// /// Timestamp data-ora evento registrato /// public DateTime valueTimestamp { get; set; } = DateTime.Now; /// /// Valore soglia DeadBand (0 --> non usata) /// public double thresholdDeadBand { get; set; } = 0; /// /// Valore (in sec) del periodo di downsampling (0 --> NON usato) /// public int samplePeriod { get; set; } = 60; } }