using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOB_UT_NEXT.Config.Base { public class TimersDto { /// /// Timer principale interfaccia in ms (15ms) /// valori ammessi: 10..500ms /// public int MsUI { get; set; } = 15; /// /// Durata standard del timer VeryHighFreq (50ms) /// public int MsVHF { get; set; } = 50; /// /// Durata standard del timer HighFreq (200ms) /// public int MsHF { get; set; } = 200; /// /// Durata standard del timer MidFreq (2 sec) /// public int MsMF { get; set; } = 2000; /// /// Durata standard del timer LowFreq (3 sec) /// public int MsLF { get; set; } = 3000; /// /// Durata standard del timer VeryLowFreq (30 sec) /// public int MsVLF { get; set; } = 30000; /// /// Durata standard del timer sampler (60 sec) /// public int MsSample { get; set; } = 60000; } }