aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/TechnicianModuleSettings.cs
blob: 65ff8d537bd49e1b7f2f134b5098585fbf0427ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
    {
        /// <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;
        }
    }
}