aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/TechnicianModuleSettings.cs
blob: 65ff8d537bd49e1b7f2f134b5098585fbf0427ca (plain)
1
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Commen
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;
        }
    }
}