aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Helper.cs
blob: dff85a011ae5e20c0149b8e97d783ed0255773ba (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<
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;
        }
    }
}