using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Settings; namespace Tango.MachineStudio.Technician { public class TechnicianModuleSettings : SettingsBase { /// /// Gets or sets the graphs view duration in seconds. /// public int GraphsDuration { get; set; } /// /// Gets or sets the diagnostics response interval in milliseconds. /// public int DiagnosticsResponseIntervalMilli { get; set; } /// /// Gets or sets the las tech project file. /// public String LastTechProjectFile { get; set; } /// /// Initializes a new instance of the class. /// public TechnicianModuleSettings() { GraphsDuration = 10; DiagnosticsResponseIntervalMilli = 30; } } }