aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/TechnicianModuleSettings.cs
blob: 65ff8d537bd49e1b7f2f134b5098585fbf0427ca (generated by cgit v1.3.1 (git 2.54.0) at 2026-07-27 18:59:12 +0000
System.Threading.Tasks; using Tango.Settings; namespace Tango.MachineStudio.Technician { public class TechnicianModuleSettings : SettingsBase { /// <summary> /// Gets or sets the graphs view duration in seconds. /// </summary> public int GraphsDuration { get; set; } /// <summary> /// Gets or sets the diagnostics response interval in milliseconds. /// </summary> public int DiagnosticsResponseIntervalMilli { get; set; } /// <summary> /// Gets or sets the las tech project file. /// </summary> public String LastTechProjectFile { get; set; } /// <summary> /// Initializes a new instance of the <see cref="TechnicianModuleSettings"/> class. /// </summary> public TechnicianModuleSettings() { GraphsDuration = 10; DiagnosticsResponseIntervalMilli = 30; } } }